html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.4em;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  padding: 0;
  text-decoration: none;
  outline: none;
}

input, button {
  background: none;
  border: none;
  outline: none;
}

button {
  font-size: inherit;
  line-height: inherit;
}

textarea {
  resize: none;
}

select:focus,
textarea:focus,
input:focus {
  outline: none;
}

/* =======================
 * * VARIABLES
 * * set the default values according to your preference.
 * * ======================= */
/* font styles */
/* colors */
/* =======================
 * * HELPER CLASS
 * * ======================= */
* {
  box-sizing: border-box;
}

/** 
 * * COLORS
 * */
.color--black {
  color: #000;
}

.color--white {
  color: #fff !important;
}

.color--darkgray {
  color: #666666 !important;
}

.color--darkgray2 {
  color: #4D4D4D;
}

.color--blue {
  color: #014EA0;
}

.color--red {
  color: #FB0006 !important;
}

/** 
 * * FONTS
 * */
.font--1 {
  font-family: "Noto Serif JP", serif;
}

.font--2 {
  font-family: "Noto Sans JP", sans-serif;
}

.font--3 {
  font-family: "optimaregular";
}

.font--bold {
  font-weight: bold;
}

.font--med {
  font-weight: 500;
}

.font--italic {
  font-style: italic;
}

.font--upcase {
  text-transform: uppercase;
}

.font--shadow {
  text-shadow: 1px 1px 1px rgba(64, 64, 64, 0.53);
}

.font--left {
  text-align: left !important;
}

.font--right {
  text-align: right;
}

.font--center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

p, span, label, a, i, strong, li {
  font-family: "Noto Sans JP", sans-serif;
}

/** 
 * * FRAME & HOLDERS
 * */
.frame {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.frame.overflow--visible {
  overflow: visible;
}

.frame__limit {
  position: relative;
  z-index: 2;
  width: 70%;
  max-width: 1950px;
  margin: auto;
  padding: 100px 0px;
  box-sizing: border-box;
}

.frame__header {
  position: relative;
  margin-bottom: 25px;
}
.frame__header * {
  font-size: 55px;
  line-height: 45px;
  letter-spacing: 7px;
}

.frame__subtitle * {
  font-size: 23px;
  line-height: 33px;
}

.frame__desc * {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}
.frame__desc.size--18px * {
  font-size: 18px;
  line-height: 28px;
}

/** 
 * * FRAME BACKGROUND
 * */
.frame__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
}
.frame__bg.bring--front {
  z-index: -1;
}
.frame__bg.bring--back {
  z-index: -2;
}
.frame__bg.size--cover {
  background-size: cover;
}
.frame__bg.size--contain {
  background-size: contain;
}
.frame__bg.repeat {
  background-position: top !important;
  background-repeat: repeat !important;
}
.frame__bg.align--r {
  left: auto;
  right: 0;
}
.frame__bg.align--l {
  left: 0;
}
.frame__bg.align--c {
  left: 50%;
  transform: translateX(-50%);
}

/** 
 * * IMAGES
 * * prerequisite: parent container
 * * purpose: showing its original state according to the
 * width and height of the parent / holder.
 * */
.img-fit {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.img-fit.size--90 {
  max-width: 90% !important;
  max-height: 90% !important;
}
.img-fit.size--55 {
  max-width: 55% !important;
  max-height: 55% !important;
}
.img-fit.size--50 {
  max-width: 50% !important;
  max-height: 50% !important;
}
.img-fit.size--40 {
  max-width: 40% !important;
  max-height: 40% !important;
}

.icon {
  position: relative;
}
.icon.size--25px {
  width: 25px;
  height: 25px;
}
.icon.has--marginl {
  margin-left: 12px;
}
.icon.has--marginr {
  margin-right: 12px;
}

/** 
 * * BUTTON
 * */
.btn {
  position: relative;
  display: block;
  width: 240px;
  margin-top: 35px;
  padding: 0;
  background: #014EA0;
  border: 1px solid #014EA0;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s linear;
}
.btn.white {
  background: #fff;
  border: 1px solid #666666;
}
.btn.size--l {
  width: 260px;
}
.btn.align--r {
  margin-left: auto;
}
.btn.align--l {
  margin-right: auto;
}
.btn.align--c {
  margin: auto;
  margin-top: 30px;
}
.btn a {
  width: 100%;
}

.btn__text {
  width: 100%;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #666666;
  transition: all 0.15s linear;
}

/** 
 * * FORMS & FIELDS
 * */
.form__row {
  position: relative;
  margin-bottom: 30px;
}
.form__row.display__inline > *:first-child {
  width: 300px;
}
.form__row.display__inline > *:last-child {
  width: calc((100% - 300px) - 4%);
  margin-right: 4%;
}

.form__label,
.form__error {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 25px;
}

.apply-border {
  width: 100%;
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #666666;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 5px;
}
.apply-border::placeholder {
  color: #cecece;
}

.select-holder {
  background: #fff;
  position: relative;
}
.select-holder.apply-border {
  padding: 0;
}
.select-holder.is--disabled {
  background: #f1f1f1 !important;
}
.select-holder.is--disabled .apply-border {
  border: 1px solid #bfbfbf;
}
.select-holder::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 0;
  width: 0px;
  height: 0px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #ababab;
  transform: translateY(-50%);
}

select {
  width: 100%;
  height: 46px;
  text-indent: 5px;
  background: transparent !important;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #333;
  cursor: pointer;
}
select:invalid {
  color: gray !important;
}
select option {
  color: #1D1D1D;
}

textarea {
  height: 187px !important;
}

input:read-only,
textarea:read-only {
  background: #f1f1f1 !important;
}
input:read-only.bg--white,
textarea:read-only.bg--white {
  background: #fff !important;
}

.form__error {
  display: none;
  margin-top: 10px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.tableholder {
  position: relative;
  width: 100%;
  overflow-x: auto;
}

.table-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 28px;
  color: #666666;
}
.table-text.table-price {
  font-size: 21px;
}

/** 
 * * WIDTH & HEIGHT
 * */
.full {
  width: 100%;
  height: 100%;
}

/** 
 * * COLUMNS
 * */
.by-2 > * {
  width: 50%;
}
.by-2 > *:first-child, .by-2 > *:nth-child(2n+1) {
  margin-left: 0%;
}
.by-2.border--s > * {
  width: 49.5%;
}
.by-2.border--m > * {
  width: 49.25%;
}
.by-2.border--l > * {
  width: 49%;
}
.by-2.border--xl > * {
  width: 48.5%;
}
.by-2.border--xxl > * {
  width: 47.5%;
}

.by-3 > * {
  width: 33.333%;
}
.by-3 > *:first-child, .by-3 > *:nth-child(3n+1) {
  margin-left: 0%;
}
.by-3.border--s > * {
  width: 32.666666667%;
}
.by-3.border--m > * {
  width: 32.333333333%;
}
.by-3.border--l > * {
  width: 32%;
}
.by-3.border--xl > * {
  width: 30.333333333%;
}
.by-3.border--xxl > * {
  width: 30%;
}

.by-4 > * {
  width: 25%;
}
.by-4 > *:first-child, .by-4 > *:nth-child(4n+1) {
  margin-left: 0%;
}
.by-4.border--s > * {
  width: 24.25%;
}
.by-4.border--m > * {
  width: 23.875%;
}
.by-4.border--l > * {
  width: 23.5%;
}
.by-4.border--xl > * {
  width: 22.75%;
}
.by-4.border--xxl > * {
  width: 21.25%;
}

.by-5 > * {
  width: 20%;
}
.by-5 > *:first-child, .by-5 > *:nth-child(5n+1) {
  margin-left: 0%;
}
.by-5.border--s > * {
  width: 19.2%;
}
.by-5.border--m > * {
  width: 18.8%;
}
.by-5.border--l > * {
  width: 18.4%;
}
.by-5.border--xl > * {
  width: 17.6%;
}
.by-5.border--xxl > * {
  width: 16%;
}

.border--s > * {
  margin-left: 1%;
}

.border--m > * {
  margin-left: 1.5%;
}

.border--l > * {
  margin-left: 2%;
}

.border--xl > * {
  margin-left: 3%;
}

.border--xxl > * {
  margin-left: 5%;
}

/** 
 * * DISPLAY
 * */
.display__inline {
  font-size: 0;
}
.display__inline > * {
  display: inline-block;
  vertical-align: middle;
}
.display__inline.align--t > * {
  vertical-align: top;
}
.display__inline.align--b > * {
  vertical-align: bottom;
}

.display__table {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
}

.display__table-cell {
  display: table-cell;
  vertical-align: middle;
}
.display__table-cell.align--t {
  vertical-align: top;
}
.display__table-cell.align--b {
  vertical-align: bottom;
}

.no-margin--b {
  margin-bottom: 0px !important;
}

/** 
 * * SCROLLBAR
 * */
.scroll--custom {
  padding-right: 3px;
  overflow-y: auto;
}
.scroll--custom::-webkit-scrollbar-track {
  background-color: #F0F0F0;
}
.scroll--custom::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #F0F0F0;
}
.scroll--custom::-webkit-scrollbar-thumb {
  height: 2px;
  background-color: #666666;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.15);
}
body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: #666666;
  border-radius: 10px;
}

/**
 * * VENDOR: SLICK
 * */
.sliderholder {
  position: relative;
  width: 91%;
  margin-left: auto;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 9;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  cursor: pointer;
}
.slider-arrow.arrow--prev {
  left: -18px;
}
.slider-arrow.arrow--next {
  right: -18px;
}
.slider-arrow:hover {
  transform: translateY(-50%) scale(0.8);
}

.slick-slide {
  outline: none !important;
}

/* =====================
 * * PUBLIC STYLES
 * * ===================== */
.fk-general__sectionname-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fk-kv__news-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.fk-kv__news, .fk-kv__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/**
 * * HEADER
 * */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
}
header.on-scroll .header__logo {
  width: 260px;
}
header.on-scroll .header__links {
  width: calc(100% - 410px);
  margin-top: 34px;
}
header.on-scroll .header__link-text {
  padding-bottom: 17px;
}
header.on-scroll .header__contact a {
  padding: 23px 15px;
}
header.on-scroll .header__contact-icon {
  width: 20px;
}

.header__limit,
.footer__limit {
  width: 95%;
  max-width: 1980px;
  margin-left: auto;
}

.header__logo,
.footer__logo {
  width: 335px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.header__logo img,
.footer__logo img {
  width: 100%;
}

.header__links {
  position: relative;
  width: calc(100% - 485px);
  margin-top: 45px;
  padding-right: 50px;
  transition: all 0.15s ease;
}

.header__link {
  position: relative;
  min-width: 85px;
  margin-left: 50px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
}
.header__link:hover {
  opacity: 0.7;
}
.header__link.is-active {
  opacity: 1 !important;
}
.header__link.is-active::before {
  opacity: 1;
}
.header__link::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: #014EA0;
  opacity: 0;
  transition: all 0.15s ease;
}
.header__link.link--contact, .header__link.link--phone, .header__link.link--fax {
  display: none;
}

.header__link-text {
  padding: 10px;
  padding-bottom: 25px;
  font-size: 19px;
  letter-spacing: 1px;
  transition: all 0.15s ease;
}

.header__contact {
  width: 150px;
  background: #014EA0;
  text-align: center;
  transition: all 0.15s ease;
}
.header__contact:hover {
  background: rgba(1, 78, 160, 0.6);
}
.header__contact a {
  display: inline-block;
  width: 100%;
  padding: 30px 15px;
  transition: all 0.15s ease;
}
.header__contact .header__link-text {
  padding: 0px !important;
}

.header__contact-icon {
  width: 30px;
  height: auto;
  margin: auto;
  margin-bottom: 8px;
  transition: all 0.15s ease;
}

.header__mobilemenu,
.header__mobilewrapper {
  display: none;
}

/**
 * * FOOTER
 * */
footer {
  position: relative;
  background: #014EA0;
}

.footer__limit {
  padding: 30px 0px;
}

.footer__links {
  width: calc((100% - 335px) - 35%);
  margin-left: 35%;
  padding-right: 5%;
  padding-bottom: 15px;
  border-bottom: 1px solid white;
}

.footer__link {
  margin-left: 70px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.footer__link:hover {
  opacity: 0.8;
}

.footer__link-text {
  font-size: 16px;
}

.footer__middle {
  margin-top: 15px;
  padding-right: 5%;
}

.footer__desc {
  margin-bottom: 15px;
}
.footer__desc:last-child {
  margin-bottom: 0px !important;
}
.footer__desc * {
  font-size: 15px;
  line-height: 25px;
}

.footer__bottom {
  margin-top: 80px;
}
.footer__bottom * {
  font-size: 14px;
  line-height: 24px;
}

/**
 * * GENERAL ELEM
 * */
.fk-general__sectionname {
  position: absolute;
  z-index: 2;
  width: 367px;
  height: 65px;
}
.fk-general__sectionname.rotate {
  transform: rotate(90deg);
}

.fk-general__sectionname-text {
  width: 100%;
  font-family: "optimaregular";
  font-size: 90px;
  font-weight: inherit !important;
  color: #fff;
  line-height: 90px;
  text-align: center;
}

/**
 * * KV
 * */
.fk-kv {
  height: 950px;
}

#kv-video {
  position: absolute;
  top: 0;
  width: 100% !important;
}

.fk-kv__limit.frame__limit {
  height: 100%;
  padding: 180px 0px;
}

.fk-kv__header * {
  font-size: 52px;
  line-height: 65px;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}

.fk-kv__scroll {
  z-index: 2;
  width: 76px;
  height: 76px;
}
.fk-kv__scroll img {
  animation: goDown 1s ease infinite;
}

@keyframes goDown {
  0% {
    transform: translateY(0px);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.fk-kv__news {
  bottom: 0px;
  z-index: 2;
  width: 100%;
  padding: 40px 60px;
  background: #fff;
}
.fk-kv__news * {
  font-size: 17px;
  line-height: 27px;
}

.fk-kv__news-title {
  width: 51px;
}

.fk-kv__news-sliderholder {
  position: relative;
  width: calc(100% - 51px);
  padding-left: 100px;
}

.fk-kv__news-item {
  padding-right: 170px;
}

.fk-kv__news-item__date {
  width: 92px;
}

.fk-kv__news-item__title {
  position: relative;
  width: calc(100% - 97px);
  padding-left: 35px;
  text-decoration: underline;
  -webkit-text-decoration-color: #ddd;
          text-decoration-color: #ddd;
  text-underline-offset: 5px;
}

.fk-kv__news-pagination {
  right: 17px;
  z-index: 2;
  background: #fff;
}
.fk-kv__news-pagination .count {
  padding-left: 25px;
  padding-right: 10px;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 15px;
  color: #666666;
}

/**
 * * ABOUT
 * */
.fk-about.frame,
.fk-portfolio.frame {
  z-index: 3;
}

.fk-about__logo,
.fk-about__featuredimg {
  position: absolute;
  z-index: 1;
}

.fk-about__logo {
  top: 80px;
  left: 0px;
  width: 200px;
}

.fk-about__featuredimg {
  right: 0px;
  bottom: -100px;
  width: 850px;
}
.fk-about__featuredimg img {
  width: 100%;
  height: auto;
}

.fk-about__sectionname {
  top: 0px;
  right: 0px;
}

.fk-about__title {
  margin-bottom: 20px;
}
.fk-about__title * {
  font-size: 38px;
  line-height: 48px;
}

.fk-about__subtitle {
  margin-bottom: 40px;
}
.fk-about__subtitle * {
  font-size: 28px;
  line-height: 38px;
  font-weight: inherit !important;
}

.fk-about__desc * {
  font-size: 14px;
  line-height: 25px;
}

/**
 * * BUSINESS
 * */
.fk-business__sectionname {
  top: 0px;
  left: -4px;
  width: 333px;
  opacity: 0.38;
}

.fk-business__limit.frame__limit {
  padding: 180px 0px;
}

.fk-business__featuredimg {
  position: relative;
  width: 700px;
  height: auto;
}

.fk-business__textholder {
  position: relative;
  width: calc(100% - 700px);
  padding-left: 120px;
}

.fk-business__header,
.fk-portfolio__header {
  margin-bottom: 50px;
  font-size: 40px;
  font-weight: inherit !important;
}

.fk-business__detail {
  position: relative;
  margin-bottom: 35px;
}
.fk-business__detail:last-child {
  margin-bottom: 0px !important;
}

.fk-business__detail-title {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 17px;
  line-height: 27px;
}
.fk-business__detail-title::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #fff;
}

.fk-business__detail-desc span {
  margin-left: -10px;
}
.fk-business__detail-desc * {
  font-size: 17px;
  line-height: 27px;
}

/**
 * * PORFOLIO
 * */
.fk-portfolio__sectionname {
  top: 132px;
  left: -120px;
  width: 330px;
}
.fk-portfolio__sectionname * {
  color: #ccc;
}

.fk-portfolio__featuredimg {
  position: absolute;
  top: -100px;
  right: 0px;
  width: 810px;
}

.fk-portfolio__list {
  margin-bottom: 50px;
}
.fk-portfolio__list li {
  margin-bottom: 10px;
}
.fk-portfolio__list li:last-child {
  margin-bottom: 0px !important;
}
.fk-portfolio__list * {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
}

/**
 * * EXAMPLES
 * */
.fk-examples__limit.frame__limit {
  width: 90%;
  padding: 40px 0px;
}

.fk-examples__icon {
  width: 70px;
  margin-bottom: 25px;
}

.fk-examples__set {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 30px 11.1%;
  border-bottom: 2px solid #ccc;
  text-align: left;
}
.fk-examples__set.set--1 {
  border-top: 2px solid #ccc;
}

.fk-examples__set-gallery {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
.fk-examples__set-gallery img {
  width: calc((100% / 5) - 20px);
  height: auto;
  margin: 10px;
}

.fk-examples__set-label {
  font-size: 15px;
  line-height: 25px;
  color: #666666;
}

/**
 * * RECRUITMENT
 * */
.fk-recruitment__sectionname {
  top: 205px;
  right: -202px;
  z-index: 3;
  width: 472px;
  opacity: 0.2;
}

.fk-recruitment__featuredimg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
}

.fk-recruitment__col.col--1 {
  padding-right: 70px;
}
.fk-recruitment__col.col--2 {
  padding-left: 70px;
}
.fk-recruitment__col.col--2 table {
  border-collapse: collapse;
}

.fk-recruitment__why-header {
  margin-bottom: 30px;
}
.fk-recruitment__why-header * {
  font-size: 46px;
  line-height: 56px;
  margin-left: -26px;
}

.fk-recruitment__why-desc * {
  font-size: 26px;
  line-height: 36px;
}

.fk-recruitment__employmentinfo-title {
  margin-bottom: 50px;
  font-size: 40px;
  line-height: 50px;
}

.fk-recruitment__employmentinfo-desc {
  margin-bottom: 30px;
}
.fk-recruitment__employmentinfo-desc:last-child {
  margin-bottom: 0px !important;
}
.fk-recruitment__employmentinfo-desc * {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 23px;
  color: #fff;
}
.fk-recruitment__employmentinfo-desc td.letters-4 {
  letter-spacing: 7px;
}
.fk-recruitment__employmentinfo-desc td.letters-5 {
  letter-spacing: 2px;
}
.fk-recruitment__employmentinfo-desc td.letters-2 {
  letter-spacing: 2px;
}

/**
 * * CONTACT
 * */
.fk-contact__limit.frame__limit {
  width: 100%;
  padding: 50px 0px;
}

.fk-contact__header {
  margin-bottom: 25px;
  font-size: 26px;
  line-height: 36px;
}

.fk-contact__infos {
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.fk-contact__info {
  position: relative;
  border-right: 2px solid #ccc;
  transition: all 0.15s ease;
}
.fk-contact__info:hover {
  background: #f1f1f1;
}
.fk-contact__info:last-child {
  border-right: none;
}
.fk-contact__info a {
  display: inline-block;
  width: 100%;
  padding: 70px 50px;
}

.fk-contact__info-icon {
  position: relative;
  width: 62px;
  height: 62px;
  margin: auto;
  margin-bottom: 20px;
}

.fk-contact__info-text {
  font-size: 20px;
  font-weight: bold;
  color: #666666;
  line-height: 30px;
  letter-spacing: 1px;
}

.for--sp {
  display: none;
}

/**
 * * CONTACTPAGE
 * */
.contactpage.fukuoka-wrapper {
  margin-top: 107px;
}
.contactpage.fukuoka-wrapper.success .fk-formbox__desc {
  padding-bottom: 300px;
  border-bottom: 1px solid #004da0;
}
.contactpage.fukuoka-wrapper.success .fk-formbox__desc * {
  font-size: 19px;
  line-height: 29px;
}

.fk-contactbanner {
  height: 370px;
}

.fk-contactbanner__limit.frame__limit {
  height: 100%;
}

.fk-contactbanner__header {
  position: absolute;
  left: 0px;
  bottom: 10%;
  font-size: 52px;
}

.fk-formholder__bg.frame__bg {
  background-position: top !important;
}

.fk-formholder__limit.frame__limit {
  padding-top: 25px;
}

.fk-formholder__breadcrumbs {
  margin-bottom: 70px;
  font-size: 17px;
}
.fk-formholder__breadcrumbs a {
  color: #666666;
  letter-spacing: 2px;
}

.fk-formbox {
  position: relative;
  width: 100%;
  padding: 40px 80px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.fk-formbox__title {
  margin-bottom: 50px;
  padding-bottom: 12px;
  border-bottom: 1px solid #004da0;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
  color: #004da0;
}

.fk-formbox__desc {
  margin-bottom: 70px;
}
.fk-formbox__desc * {
  font-size: 15px;
  line-height: 30px;
  color: #243748;
}

.fk-formbox__info {
  width: 75%;
  margin: auto;
  margin-bottom: 80px;
  padding: 30px 50px;
  border: 2px solid #004da0;
}

.fk-formbox__info-title {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
  color: #004da0;
}

.fk-formbox__info-num {
  font-size: 39px;
  line-height: 49px;
  color: #004da0;
}

#fk-form {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid #004da0;
}
#fk-form .form__row {
  padding-bottom: 30px;
  border-bottom: 1px solid #004da0;
}
#fk-form .form__label {
  margin-top: 10px;
  text-align: center;
}
#fk-form .field--name .form__field input,
#fk-form .field--furigana .form__field input,
#fk-form .field--phone .form__field input,
#fk-form .field--email .form__field input {
  width: 75%;
}

#fk-formBtn,
#fk-formBack {
  width: 260px;
  margin-top: 70px;
  margin-bottom: 30px;
  border-radius: 35px;
}
#fk-formBtn:hover,
#fk-formBack:hover {
  background: rgba(1, 78, 160, 0.7);
}
#fk-formBtn .btn__text,
#fk-formBack .btn__text {
  padding: 19px 10px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 3px;
  color: #fff !important;
}
#fk-formBtn .btn__text > *,
#fk-formBack .btn__text > * {
  display: inline-block;
  vertical-align: middle;
}
#fk-formBtn img,
#fk-formBack img {
  width: 22px;
  margin-right: 5px;
}

.fk-formbox__subtitle {
  margin-bottom: 25px;
  font-size: 23px;
  line-height: 33px;
  text-align: center;
}

/**
 * * ANIMATION
 * */
.js-fadeInUp {
  transform: translateY(25px);
  opacity: 0;
}

/**
 * * CUSTOM STYLES 07-26-2021
 * */
.accordionBody {
  display: none;
}

.accordion__btnText {
  margin-left: 10px;
  margin-bottom: 25px;
}

.accordion__arrowInd {
  cursor: pointer;
}
.accordion__arrowInd img {
  transition: all 0.7s cubic-bezier(0.6, -0.28, 0.74, 0.05);
  transition: all 1s ease;
}
.accordion__arrowInd img.is-open {
  transform: rotate(180deg);
}

/* =====================
 * * RESPONSIVE
 * * ===================== */
@media screen and (max-width: 1800px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__limit.frame__limit {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 1791px) {
  /**
  * * BUSINESS
  * */
  .fk-business__featuredimg {
    width: calc(100% - 555px);
  }

  .fk-business__textholder {
    width: 555px;
  }
}
@media screen and (max-width: 1775px) {
  /**
  * * FOOTER
  * */
  .footer__links {
    width: calc((100% - 335px) - 30%);
    margin-left: 30%;
  }
}
@media screen and (max-width: 1650px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__col.col--1 {
    width: calc(100% - 580px);
  }
  .fk-recruitment__col.col--2 {
    width: 580px;
    padding-left: 120px;
  }

  .fk-recruitment__why-textholder {
    position: absolute;
    left: -10%;
  }
}
@media screen and (max-width: 1630px) {
  /**
  * * FOOTER
  * */
  .footer__links {
    width: calc((100% - 335px) - 27%);
    margin-left: 27%;
  }
}
@media screen and (max-width: 1600px) {
  /**
  * * KV
  * */
  .fk-kv {
    height: 850px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__limit.frame__limit {
    padding: 45px 0px;
  }

  .fk-about__featuredimg {
    width: 800px;
  }
}
@media screen and (max-width: 1560px) {
  /**
  * * FOOTER
  * */
  .footer__links {
    width: calc((100% - 335px) - 23%);
    margin-left: 23%;
  }
}
@media screen and (max-width: 1500px) {
  /**
  * * GENERAL
  * */
  .frame__limit {
    width: 75%;
    padding: 80px 0px;
  }

  /**
  * * KV
  * */
  .fk-kv {
    height: 830px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__logo {
    top: 50px;
    width: 155px;
  }

  .fk-about__featuredimg {
    bottom: -60px;
    width: 750px;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__featuredimg {
    width: calc(100% - 500px);
  }

  .fk-business__textholder {
    width: 500px;
    padding-left: 90px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__featuredimg {
    top: -90px;
    width: 750px;
  }

  /**
  * * EXAMPLES
  * */
  .fk-examples__set {
    padding: 30px 8.35%;
  }

  /**
  * * RECRUITMENT
  * */ 
  .fk-recruitment__employmentinfo-title {
    margin-bottom: 35px;
  }

  .fk-recruitment__employmentinfo-desc * {
    line-height: 22px;
  }
}
@media screen and (max-width: 1475px) {
  /**
  * * FOOTER
  * */
  .footer__links {
    width: calc((100% - 335px) - 18%);
    margin-left: 18%;
  }
}
@media screen and (max-width: 1440px) {
  /**
  * * KV
  * */
  #kv-video {
    left: 50%;
    width: auto !important;
    height: 100% !important;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1425px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__employmentinfo-title {
    margin-bottom: 32px;
  }

  .fk-recruitment__employmentinfo-desc * {
    line-height: 21px;
  }
}
@media screen and (max-width: 1400px) {
  /**
  * * GENERAL
  * */
  .frame__limit {
    width: 78%;
  }

  /**
  * * KV
  * */
  .fk-kv {
    height: 780px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__logo {
    width: 140px;
  }

  /**
  * * EXAMPLES
  * */
  .fk-examples__set {
    padding: 30px 6.68%;
  }
}
@media screen and (max-width: 1380px) {
  /**
  * * FOOTER
  * */
  .footer__links {
    width: calc((100% - 335px) - 15%);
    margin-left: 15%;
  }

  /**
  * * GENERAL
  * */
  .frame__limit {
    padding: 60px 0px;
  }

  /**
  * * KV
  * */
  .fk-kv__news-sliderholder {
    padding-left: 50px;
  }

  .fk-kv__news {
    padding: 30px 45px;
  }
  .fk-kv__news * {
    font-size: 16px;
    line-height: 26px;
  }
  .fk-kv__news .count {
    padding-left: 15px;
    padding-right: 3px;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 10px;
  }

  .slider-arrow {
    width: 11px;
    height: 11px;
  }
  .slider-arrow.arrow--prev {
    left: -12px;
  }
  .slider-arrow.arrow--next {
    right: -12px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__featuredimg {
    top: -75px;
    width: 680px;
  }

  /**
  * * CONTACT
  * */
  .fk-contact__info-icon {
    width: 55px;
    height: 55px;
  }
}
@media screen and (max-width: 1370px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__why-textholder {
    left: -7%;
  }

  .fk-recruitment__employmentinfo-desc * {
    font-size: 12px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1355px) {
  /**
  * * ABOUT
  * */
  .fk-about__logo {
    width: 140px;
  }

  .fk-about__featuredimg {
    width: 720px;
  }

  .fk-about__title * {
    font-size: 32px;
    line-height: 42px;
  }

  .fk-about__subtitle * {
    font-size: 25px;
    line-height: 35px;
  }

  .fk-about__desc * {
    font-size: 13px;
    line-height: 24px;
  }
}
@media screen and (max-width: 1330px) {
  /**
  * * FOOTER
  * */
  .footer__links {
    width: calc((100% - 335px) - 10%);
    margin-left: 10%;
  }

  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__limit.frame__limit {
    width: 100%;
    padding: 0px;
  }

  .fk-recruitment__col.col--1, .fk-recruitment__col.col--2 {
    position: relative;
    display: block;
    width: 100%;
    padding: 0px;
  }
  .fk-recruitment__col.col--1 {
    height: 300px;
  }
  .fk-recruitment__col.col--2 {
    padding: 50px 0px;
  }

  .fk-recruitment__why-textholder {
    position: relative;
    left: 0px;
    z-index: 2;
    width: 90%;
    margin: auto;
    padding: 50px 0px;
    text-align: center;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  }

  .fk-recruitment__why-header * {
    margin-left: 0px;
  }

  .fk-recruitment__featuredimg {
    z-index: 1;
  }
  .fk-recruitment__featuredimg.for--pc {
    display: none;
  }
  .fk-recruitment__featuredimg.for--sp {
    display: block;
    background-position: bottom !important;
  }

  .fk-recruitment__employmentinfo-title {
    width: 90%;
    margin: auto;
    margin-bottom: 35px;
    text-align: center;
  }

  .fk-recruitment__employmentinfo-desc {
    width: 470px !important;
    margin: auto;
  }
}
@media screen and (max-width: 1300px) {
  /**
  * * GENERAL
  * */
  .fk-general__sectionname {
    width: 291px;
    height: 60px;
  }

  .fk-general__sectionname-text {
    font-size: 70px;
  }

  /**
  * * ABOUT
  * */
  .fk-about.frame {
    overflow: hidden;
  }

  .fk-about__sectionname.for--sp {
    top: 13%;
    right: -120px;
    display: block;
    transform: rotate(90deg);
    opacity: 0.2;
  }
  .fk-about__sectionname.for--sp .fk-general__sectionname-text {
    color: #666666;
  }

  .fk-about__textholder {
    margin-bottom: 50px;
    text-align: center;
  }

  .fk-about__featuredimg {
    position: relative;
    bottom: 0px;
    width: 65%;
    margin: auto;
  }
  .fk-about__featuredimg.for--pc {
    display: none;
  }
  .fk-about__featuredimg.for--sp {
    display: block;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__sectionname {
    left: 0px;
    width: 257px;
    height: 54px;
  }

  .fk-business__limit.frame__limit {
    padding-top: 100px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__sectionname {
    top: 99px;
    left: -98px;
    width: 256px;
    height: 55px;
  }

  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__sectionname {
    top: 160px;
    right: -160px;
    width: 371px;
    height: 53px;
  }

  .fk-recruitment__why-textholder {
    padding: 75px 0px;
  }

  .fk-recruitment__why-header * {
    font-size: 40px;
    line-height: 50px;
  }

  .fk-recruitment__why-desc * {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (max-width: 1250px) {
  /**
  * * HEADER
  * */
  .header__limit {
    width: 95%;
    margin: auto;
    padding: 10px 0px;
  }

  .header__logo,
.footer__logo {
    width: 250px;
  }

  .header__mobilemenu {
    display: inline-block;
    width: calc(100% - 250px);
  }

  .header__hamburger {
    position: relative;
    z-index: 10;
    width: 25px;
    margin-left: auto;
    cursor: pointer;
  }
  .header__hamburger > div {
    width: 100%;
    height: 2px;
    margin-bottom: 5px;
    background: #014EA0;
    transition: all 0.2s ease;
  }
  .header__hamburger > div:last-child {
    margin-bottom: 0px;
  }
  .header__hamburger.is-active > div:first-child {
    transform: translateY(7px) rotate(42deg);
    background: #fff;
  }
  .header__hamburger.is-active > div:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active > div:last-child {
    transform: translateY(-7px) rotate(-42deg);
    background: #fff;
  }

  .header__links {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10;
    width: 250px;
    height: 100%;
    overflow: auto;
    margin-top: 0px;
    padding-top: 90px;
    padding-right: 0px;
    overflow-y: auto;
    background: #014EA0;
    box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.15s ease;
  }
  .header__links.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
  }

  .header__link {
    display: block;
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
    padding: 0px 25px;
    text-align: left;
  }
  .header__link.link--contact {
    margin-bottom: 70px;
  }
  .header__link.link--contact, .header__link.link--phone, .header__link.link--fax {
    display: block;
  }
  .header__link.link--phone, .header__link.link--fax {
    margin-bottom: 28px;
  }
  .header__link.link--phone .header__link-icon,
.header__link.link--phone .header__link-text, .header__link.link--fax .header__link-icon,
.header__link.link--fax .header__link-text {
    display: inline-block;
    vertical-align: middle;
  }
  .header__link.link--phone .header__link-text, .header__link.link--fax .header__link-text {
    width: calc(100% - 18px);
    padding-left: 12px !important;
    font-size: 16px;
  }

  .header__link-icon {
    width: 18px;
  }

  .header__link-text {
    padding: 0px !important;
    font-size: 20px;
    color: #fff !important;
  }

  .header__contact {
    display: none;
  }

  .header__mobilewrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
  }
  .header__mobilewrapper.is-active {
    opacity: 1;
    visibility: visible;
  }

  /**
  * * FOOTER
  * */
  footer {
    text-align: center;
  }

  .footer__limit {
    width: 95%;
    margin: auto;
  }

  .footer__logo {
    margin-bottom: 30px;
  }

  .footer__links {
    display: block;
    width: 100%;
    margin-left: 0px;
    border-bottom: none;
    text-align: center;
  }

  .footer__middle {
    padding-right: 0px;
  }

  .footer__desc * {
    text-align: center;
  }

  .footer__bottom {
    margin-top: 30px;
  }

  /**
  * * GENERAL
  * */
  .frame__limit {
    width: 82%;
  }

  /**
  * * KV
  * */
  .fk-kv__limit.frame__limit {
    padding-top: 150px;
  }

  .fk-kv__header * {
    font-size: 42px;
    line-height: 52px;
  }

  /**
  * * EXAMPLES
  * */
  .fk-examples__set {
    padding: 25px 4.45%;
  }

  /**
  * * CONTACTPAGE
  * */
  .contactpage.fukuoka-wrapper {
    margin-top: 78px;
  }

  .fk-contactbanner {
    height: 300px;
  }

  .fk-contactbanner__header {
    font-size: 45px;
  }
}
@media screen and (max-width: 1150px) {
  /**
  * * BUSINESS
  * */
  .fk-business__limit.frame__limit {
    padding-bottom: 120px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__featuredimg {
    top: -52px;
    width: 650px;
  }
}
@media screen and (max-width: 1100px) {
  /**
  * * KV
  * */
  .fk-kv__news {
    padding: 30px 25px;
  }

  .fk-kv__news-sliderholder {
    padding-left: 30px;
  }

  .fk-kv__news-item__title {
    padding-left: 20px;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__textholder {
    display: block;
    width: 440px;
    margin: auto;
    margin-bottom: 50px;
    padding-left: 0px;
  }

  .fk-business__header {
    text-align: center;
  }

  .fk-business__detail-desc * {
    font-size: 16px;
    line-height: 26px;
  }

  .fk-business__featuredimg,
.fk-portfolio__featuredimg {
    width: 70%;
    margin: auto;
  }
  .fk-business__featuredimg.for--pc,
.fk-portfolio__featuredimg.for--pc {
    display: none;
  }
  .fk-business__featuredimg.for--sp,
.fk-portfolio__featuredimg.for--sp {
    display: block;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__textholder {
    width: 340px;
    margin: auto;
    margin-bottom: 50px;
    text-align: center;
  }

  .fk-portfolio__btn.btn {
    margin: auto;
  }

  .fk-portfolio__featuredimg {
    position: relative;
    top: auto;
  }

  /**
  * * EXAMPLES
  * */
  .fk-examples__limit.frame__limit {
    width: 82%;
  }

  .fk-examples__set {
    padding: 25px 0px;
  }

  .fk-examples__set-gallery img {
    width: calc((100% / 5) - 10px);
    margin: 5px;
  }

  .fk-examples__set-label span {
    display: block;
  }

  /**
  * * CONTACTPAGE
  * */
  .fk-formbox__info-num {
    font-size: 30px;
    line-height: 40px;
  }

  #fk-form {
    padding-top: 25px;
  }
  #fk-form .form__row {
    padding-bottom: 25px;
    border-bottom: 1px solid #004da0;
  }
  #fk-form .field--name .form__field input,
#fk-form .field--furigana .form__field input,
#fk-form .field--phone .form__field input,
#fk-form .field--email .form__field input {
    width: 85%;
  }

  .form__row.display__inline > *:first-child {
    width: 250px;
  }
  .form__row.display__inline > *:last-child {
    width: calc((100% - 250px) - 4%);
  }
}
@media screen and (max-width: 1000px) {
  /**
  * * GENERAL
  * */
  .frame__limit,
.fk-examples__limit.frame__limit {
    width: 90%;
  }

  /**
  * * ABOUT
  * */
  .fk-about__logo {
    width: 100px;
  }

  .fk-about__featuredimg,
.fk-business__featuredimg,
.fk-portfolio__featuredimg {
    width: 75%;
  }

  .fk-about__title * {
    font-size: 28px;
    line-height: 38px;
  }

  .fk-about__subtitle * {
    font-size: 21px;
    line-height: 31px;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__limit.frame__limit {
    padding-bottom: 60px;
  }

  /**
  * * CONTACT
  * */
  .fk-contact__info-icon {
    width: 45px;
    height: 45px;
  }

  .fk-contact__info-text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 970px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__featuredimg.for--sp {
    background-position: center !important;
  }
}
@media screen and (max-width: 540px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__featuredimg.for--sp {
    background-position: center !important;
    background-size: auto;
  }
}
@media screen and (max-width: 900px) {
  /**
  * * FOOTER
  * */
  .footer__link {
    margin: 15px 20px;
  }

  /**
  * * KV
  * */
  .fk-kv__news {
    padding: 20px;
  }

  .fk-kv__news-title,
.fk-kv__news-sliderholder {
    display: block;
    width: 100%;
    text-align: left;
  }

  .fk-kv__news-title {
    margin-bottom: 12px;
  }

  .fk-kv__news-sliderholder {
    padding-left: 0px;
  }

  .fk-kv__news-item {
    padding-right: 0px;
  }

  .fk-kv__news-item__title {
    height: 50px;
    overflow: auto;
  }

  .fk-kv__news-pagination {
    position: relative;
    width: 75px;
    margin-left: auto;
    margin-top: 25px;
  }

  .fk-kv__scroll {
    width: 60px;
    height: 60px;
  }

  /**
  * * CONTACTPAGE
  * */
  .fk-formbox {
    padding: 40px;
  }
}
@media screen and (max-width: 700px) {
  /**
  * * GENERAL
  * */
  .fk-general__sectionname {
    width: 221px;
    height: 45px;
  }

  .fk-general__sectionname-text {
    font-size: 50px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__sectionname.for--sp {
    right: -86px;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__sectionname {
    width: 185px;
    height: 45px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__sectionname {
    top: 72px;
    left: -69px;
    width: 183px;
    height: 40px;
  }

  /**
  * * EXAMPLES
  * */
  .fk-examples__set-gallery {
    text-align: center;
  }
  .fk-examples__set-gallery img {
    width: calc((100% / 3) - 10px);
    margin: 5px;
  }

  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__sectionname {
    top: 110px;
    right: -116px;
    width: 269px;
    height: 48px;
  }

  /**
  * * CONTACT
  * */
  .fk-contact__infos.by-3 > * {
    width: 100%;
    margin-left: 0px;
    border-right: none !important;
    border-bottom: 2px solid #ccc;
  }
  .fk-contact__infos.by-3 > *:last-child {
    border-bottom: none;
  }

  .fk-contact__info a {
    padding: 30px 25px;
  }

  /**
  * * CONTACTPAGE
  * */
  .fk-contactbanner {
    height: 200px;
  }

  .fk-contactbanner__header {
    font-size: 30px;
  }

  .fk-formholder__breadcrumbs {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 25px;
  }

  .fk-formbox {
    padding: 25px;
  }

  .fk-formbox__title,
.fk-formbox__desc {
    margin-bottom: 30px;
  }

  .fk-formbox__title,
.fk-formbox__info-num {
    font-size: 25px;
    line-height: 35px;
  }

  .fk-formbox__info {
    margin-bottom: 40px;
    padding: 25px;
  }

  #fk-form .form__label {
    margin-bottom: 10px;
    text-align: left;
  }

  .form__row.display__inline > *:first-child,
.form__row.display__inline > *:last-child {
    display: block;
    width: 100%;
    margin-left: 0px;
  }
  .form__row.display__inline > *:first-child input,
.form__row.display__inline > *:last-child input {
    width: 100% !important;
  }
}
@media screen and (max-width: 600px) {
  /**
  * * HEADER
  * */
  .header__logo {
    width: 180px;
  }

  .header__mobilemenu {
    width: calc(100% - 180px);
  }

  .header__links {
    padding-top: 70px;
  }

  /**
  * * GENERAL
  * */
  .frame__limit {
    padding: 45px 0px;
  }

  /**
  * * KV
  * */
  .fk-kv {
    height: 650px;
  }

  .fk-kv__limit.frame__limit {
    padding-top: 100px;
  }

  .fk-kv__header * {
    font-size: 35px;
    line-height: 45px;
  }

  .fk-kv__news {
    padding: 20px 15px;
  }
  .fk-kv__news * {
    font-size: 15px;
    line-height: 25px;
  }

  .fk-kv__news-item__date {
    width: 83px;
  }

  .fk-kv__news-item__title {
    width: calc(100% - 88px);
    padding-left: 10px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__desc .for--pc {
    display: none;
  }
  .fk-about__desc .for--sp {
    display: block;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__limit.frame__limit {
    padding-top: 60px;
    padding-bottom: 45px;
  }

  .fk-business__header,
.fk-portfolio__header,
.fk-recruitment__employmentinfo-title {
    margin-bottom: 40px;
    font-size: 32px;
  }

  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__employmentinfo-desc {
    width: 90% !important;
    margin: auto;
    margin-bottom: 25px;
  }
  .fk-recruitment__employmentinfo-desc td:first-child {
    width: 88px;
  }

  /**
  * * CONTACTPAGE
  * */
  .contactpage.fukuoka-wrapper {
    margin-top: 62px;
  }
  .contactpage.fukuoka-wrapper.success .fk-formbox__desc {
    padding-bottom: 200px;
  }
  .contactpage.fukuoka-wrapper.success .fk-formbox__desc * {
    font-size: 15px;
    line-height: 30px;
  }

  .fk-formbox__subtitle {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 500px) {
  /**
  * * GENERAL
  * */
  .fk-general__sectionname {
    width: 149px;
    height: 37px;
  }

  .fk-general__sectionname-text {
    font-size: 35px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__logo {
    width: 80px;
  }

  .fk-about__sectionname.for--sp {
    top: 9%;
    right: -58px;
  }

  .fk-about__title * {
    font-size: 26px;
    line-height: 36px;
  }

  .fk-about__subtitle * {
    font-size: 18px;
    line-height: 28px;
  }

  .fk-about__featuredimg,
.fk-business__featuredimg,
.fk-portfolio__featuredimg {
    width: 100%;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__sectionname {
    width: 130px;
    height: 33px;
  }

  .fk-business__textholder {
    width: 100%;
  }

  .fk-business__header,
.fk-portfolio__header,
.fk-recruitment__employmentinfo-title {
    font-size: 28px;
  }

  .fk-business__detail-desc * {
    font-size: 13px;
    line-height: 23px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__sectionname {
    top: 47px;
    left: -49px;
    width: 132px;
    height: 35px;
  }

  .fk-portfolio__list * {
    font-size: 15px;
    line-height: 25px;
  }

  /**
  * * EXAMPLES
  * */
  .fk-examples__icon {
    width: 55px;
  }

  .fk-examples__set-gallery img {
    width: calc((100% / 2) - 10px);
    margin: 5px;
  }

  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__sectionname {
    top: 77px;
    right: -81px;
    width: 185px;
    height: 37px;
  }

  .fk-recruitment__col.col--1 {
    height: auto;
  }

  .fk-recruitment__why-header * {
    font-size: 28px;
    line-height: 38px;
  }

  .fk-recruitment__why-desc * {
    font-size: 20px;
    line-height: 30px;
  }

  /**
  * * CONTACT
  * */
  .fk-contact__header {
    font-size: 22px;
    line-height: 32px;
  }

  .fk-contact__info-icon {
    width: 38px;
    height: 38px;
  }

  /**
  * * CONTACTPAGE
  * */
  .fk-formbox__title,
.fk-formbox__info-num {
    font-size: 20px;
    line-height: 30px;
  }

  .fk-formbox__desc * {
    font-size: 14px;
    line-height: 27px;
  }

  .fk-formbox__info {
    width: 100%;
    padding: 20px 15px;
  }

  .fk-formbox__info-title {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 26px;
  }

  #fk-formBtn,
#fk-formBack {
    margin-top: 40px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 450px) {
  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__employmentinfo-desc .for--pc {
    display: none;
  }
  .fk-recruitment__employmentinfo-desc .for--sp {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  /**
  * * HEADER
  * */
  .header__logo {
    width: 160px;
  }

  .header__mobilemenu {
    width: calc(100% - 160px);
  }

  /**
  * * FOOTER
  * */
  .footer__desc * {
    font-size: 14px;
  }

  /**
  * * GENERAL
  * */
  .fk-general__sectionname {
    width: 129px;
    height: 20px;
  }

  .fk-general__sectionname-text {
    font-size: 30px;
  }

  /**
  * * ABOUT
  * */
  .fk-about__sectionname.for--sp {
    right: -54px;
  }

  /**
  * * BUSINESS
  * */
  .fk-business__sectionname {
    width: 110px;
    height: 27px;
  }

  /**
  * * PORTFOLIO
  * */
  .fk-portfolio__sectionname {
    top: 42px;
    left: -42px;
    width: 113px;
    height: 29px;
  }

  .fk-portfolio__textholder {
    width: 100%;
  }

  /**
  * * RECRUITMENT
  * */
  .fk-recruitment__sectionname {
    top: 69px;
    right: -67px;
    width: 158px;
    height: 23px;
  }

  /**
  * * CONTACTPAGE
  * */
  .contactpage.fukuoka-wrapper {
    margin-top: 57px;
  }
  .contactpage.fukuoka-wrapper.success .fk-formbox__desc {
    padding-bottom: 150px;
  }
  .contactpage.fukuoka-wrapper.success .fk-formbox__desc * {
    font-size: 14px;
    line-height: 28px;
  }

  .fk-contactbanner {
    height: 170px;
  }

  .fk-formbox__subtitle {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (max-width: 365px) {
  /**
  * * BUSINESS
  * */
  .fk-business__detail-desc * {
    font-size: 12px;
    line-height: 22px;
  }

  /**
  * * CONTACTPAGE
  * */
  #fk-formBtn,
#fk-formBack {
    width: 240px;
  }
}