@charset "UTF-8";
/*----------------------------------------------------------------------------
******************************************************************************
** base color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base font
******************************************************************************
----------------------------------------------------------------------------*/
/*--ふくおかBizのページで使用されているメディアクエリのまとめです。scssで利用してください。cssでは使えません！！
@mixin pc_screen_under {
  @media screen and (max-width: 1230px){
    @content;
  }
}
@mixin pc_middle_under {
  @media screen and (max-width: 1200px){
    @content;
  }
}
@mixin pc_to_tablet {
  @media screen and (min-width: 768px) and (max-width: 1199px){
    @content;
  }
}
@mixin tablet_over {
  @media screen and (min-width: 768px){
    @content;
  }
}
@mixin tablet_under {
  @media screen and (max-width: 768px){
    @content;
  }
}
@mixin tablet_to_sp {
  @media screen and (min-width: 599px) and (max-width: 767px) {
    @content;
  }
}
@mixin sp_under {
  @media screen and (max-width: 599px){
    @content;
  }
}


呼び出し方（tablet_underのメディアクエリを呼び出す場合）
@include tablet_under(){
これだけ！この中にcssかいてください
}
-----------------------------------------------------*/
.blog_eyecatch {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.blog_eyecatch img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -100px;
}
@media screen and (max-width: 1230px) {
  .blog_eyecatch {
    height: auto;
  }
  .blog_eyecatch img {
    position: initial;
  }
}
.blog_eyecatch .blog_eyecatch_txt {
  position: absolute;
  top: 50%;
  right: 12%;
  font-weight: 600;
  color: #111;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .blog_eyecatch .blog_eyecatch_txt {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .blog_eyecatch .blog_eyecatch_txt {
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
  }
}
.blog_eyecatch .blog_eyecatch_txt span {
  padding: 0 0.3em;
  background: #fff;
}
.blog_eyecatch .blog_eyecatch_txt span.txt_sub {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  font-size: 35px;
}
@media screen and (max-width: 1200px) {
  .blog_eyecatch .blog_eyecatch_txt span.txt_sub {
    font-size: 24px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  .blog_eyecatch .blog_eyecatch_txt span.txt_sub {
    font-size: 16px;
  }
}
.blog_eyecatch .blog_eyecatch_txt span.txt_main {
  margin-top: 0.5em;
  line-height: 1.4;
  font-size: 50px;
}
@media screen and (max-width: 1200px) {
  .blog_eyecatch .blog_eyecatch_txt span.txt_main {
    font-size: 35px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 599px) {
  .blog_eyecatch .blog_eyecatch_txt span.txt_main {
    font-size: 24px;
  }
}

.page-krblog {
  width: 100%;
  max-width: 1060px;
  margin: 60px auto;
}

h2.kr_icon {
  width: 100%;
  padding: 0 0 10px 50px;
  position: relative;
  border-bottom: solid 2px rgb(26, 26, 26);
  font-size: 1.5em !important;
  font-weight: bold;
}
h2.kr_icon:before {
  content: "";
  background-image: url(https:///e-fukuoka.co.jp/wp-content/themes/efukuoka/images/icon/kr_icon.jpg);
  position: absolute;
  left: 0px;
  top: 7px;
  background-size: cover;
  width: 46px;
  height: 31px;
}

.tabi_flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1230px) {
  .tabi_flow {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
.tabi_flow .tf_item {
  width: 20%;
  border: solid 1px rgb(255, 215, 94);
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1230px) {
  .tabi_flow .tf_item {
    width: 40%;
  }
}
@media screen and (max-width: 599px) {
  .tabi_flow .tf_item {
    width: 90%;
  }
}
.tabi_flow .tf_item .todo {
  color: #9c9c9c;
  text-align: center;
  font-size: 0.7em;
}
.tabi_flow .tf_item .underline {
  text-decoration: underline;
  font-size: 0.8em;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  font-size: 30px;
}
@media screen and (max-width: 1230px) {
  .arrow {
    display: none;
  }
}

/*スライドイン*/
.slideIn {
  opacity: 0;
  transform: translateX(-50px);
}

.slide_done {
  animation: SlideIn_anime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes SlideIn_anime {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.tabimae {
  position: relative;
}

.tabimae::before {
  content: "";
  background-image: url(https:///e-fukuoka.co.jp/wp-content/themes/efukuoka/images/imakoko.png);
  height: 75px;
  width: 100px;
  position: absolute;
  right: -10px;
  top: -50px;
}

.col {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .col {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

.grid {
  display: grid;
  width: 50%;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .grid {
    width: 80%;
    margin-bottom: 50px;
  }
}

img.naverkeys {
  height: auto;
  width: 100%;
}

p.nk_txt {
  width: 40%;
  font-weight: bold;
  display: grid;
  align-content: center;
}
@media screen and (max-width: 768px) {
  p.nk_txt {
    width: 80%;
  }
}

.spacer {
  margin-top: 100px;
}

.js-fadeIn {
  opacity: 1;
  transform: translateY(70px);
  transition: 1s;
  transition-timing-function: ease-out;
}

.is-scrollIn {
  opacity: 1;
  transform: translateY(0px);
}

img.influencer {
  height: auto;
  width: 100%;
}

p.if_txt {
  width: 40%;
  font-weight: bold;
  display: grid;
  align-content: center;
}
@media screen and (max-width: 768px) {
  p.if_txt {
    width: 80%;
  }
}

.reverse {
  flex-direction: row-reverse;
}

.features {
  width: 40%;
  display: grid;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .features {
    width: 80%;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 1230px) {
  .sp_only {
    display: block;
  }
}

.features_items > p {
  margin: 30px 0;
  padding: 10px 20px;
  border: solid 1px #f99026;
  border-radius: 10px;
  min-height: 85px;
  display: grid;
  align-items: center;
  text-align: center;
  position: relative;
}

.features_items > .license {
  padding-right: 60px;
}

.features_items > .license:before {
  content: "";
  position: absolute;
  height: 50px;
  width: 50px;
  background-image: url(https:///e-fukuoka.co.jp/wp-content/themes/efukuoka/images/licence_account.png);
  right: 10px;
  background-size: cover;
}

/*くるくる*/
.kurukuru:before {
  opacity: 0;
}

.kurukuru_done:before {
  animation: kurukuru 2s cubic-bezier(0.06, 0.58, 0.19, 0.95);
  opacity: 1;
}

@keyframes kurukuru {
  0% {
    transform: rotateY(0) translateY(40px);
    opacity: 0;
  }
  100% {
    transform: rotateY(1440deg) translateY(0);
    opacity: 1;
  }
}
.ks_list {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .ks_list {
    justify-content: space-around;
  }
}
.ks_list .keywords_search {
  width: 30%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .ks_list .keywords_search {
    width: 47%;
  }
}
@media screen and (max-width: 599px) {
  .ks_list .keywords_search {
    width: 85%;
  }
}
.ks_list .keywords_search > figcaption {
  font-size: 0.9em;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ks_list .keywords_search > figcaption {
    font-size: 0.8em;
  }
}
.ks_list .keywords_search .ks_item {
  height: auto;
  transition: 0.5s;
  display: block;
  margin: auto;
}
.ks_list .keywords_search .ks_item:hover {
  scale: 1.2;
}

.bloger_list {
  width: 100% !important;
}
.bloger_list.swiper-wrapper {
  transition-timing-function: linear;
}
.bloger_list .bloger {
  margin: 20px;
  padding: 15px;
  border: solid 1px #ababab;
  border-radius: 10px;
  transition: 0.5s;
}
.bloger_list .bloger:hover {
  scale: 1.1;
}
.bloger_list .goto_blog {
  display: block;
  width: 100%;
  max-width: 200px;
  margin: 10px auto;
  padding: 5px 10px;
  background-color: #1ca9e3;
  color: initial !important;
  color: #fff !important;
  text-align: center;
  border-radius: 100vh;
}

.owl-carousel .owl-item img {
  width: 150px !important;
  margin: auto;
  border-radius: 100vh;
}

.owl-carousel .owl-stage-outer {
  padding: 10px 0;
}

.account_exp {
  width: 100%;
}
.account_exp tr, .account_exp tr th, .account_exp tr td {
  display: block;
  font-size: 0.9em;
}
.account_exp tr th {
  background-color: #ededed;
}
.account_exp tr td {
  text-align: center;
}

.price_table {
  width: 100%;
  font-size: 1.1em;
}
.price_table tr th, .price_table tr td {
  text-align: center;
  padding: 10px;
  height: 50px;
  border-collapse: collapse;
  border: 1px solid #333;
}
.price_table tr th {
  background-color: #ededed;
}
.price_table tr td {
  text-align: center;
}
.price_table .bg_none {
  background-color: none;
}

/** お問い合わせ **/
.contact {
  padding: 0 !important;
}
.contact form {
  margin-bottom: 0 !important;
}

.kr_contact {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px clamp(45px, 7.9vw, 145px);
  background: #E8E8E8;
}
.kr_contact .ttl {
  margin-top: 0 !important;
  margin-bottom: 1em;
  font-size: 28px;
  font-weight: 600;
  color: #232323;
  text-align: center;
}
.kr_contact .ttl.thanks {
  color: #DD001B;
}
.kr_contact .form {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.kr_contact .form .form_item label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #434343;
  font-size: 1.4rem;
  font-weight: 700;
}
.kr_contact .form .form_item label span {
  padding: 2px 10px;
  color: #DD001B;
  font-size: 1.2rem;
  border: 1px solid #DD001B;
  border-radius: 3px;
}
.kr_contact .form .form_item input:not([type=radio]):not([type=submit]):not([type=checkbox]), .kr_contact .form .form_item textarea, .kr_contact .form .form_item select {
  display: block;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px;
  background: #fff;
  font-size: 1.4rem;
  border: none !important;
  border-radius: 4px;
}
.kr_contact .form .form_item select {
  width: -moz-max-content;
  width: max-content;
}
.kr_contact .form .form_item .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-weight: 700;
  animation: blink 1.5s ease-in-out infinite alternate;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.kr_contact .form .form_item span[class^=confirm-] {
  display: block;
  width: 100%;
  padding: 10px;
  background: #fff;
  font-size: 1.4rem;
  border-radius: 4px;
}
.kr_contact input[type=submit],
.kr_contact input[type=button] {
  display: block;
  width: 190px;
  margin: 0 auto;
  padding: 15px;
  background: #DD001B;
  color: #fff;
  border: 1px solid #DD001B;
  border-radius: 50vh;
  transition: all 0.3s ease;
  cursor: pointer;
}
.kr_contact input[type=submit]:hover,
.kr_contact input[type=button]:hover {
  background: #fff !important;
  color: #DD001B;
}
.kr_contact input[type=submit].confirm_button, .kr_contact input[type=submit].back_button,
.kr_contact input[type=button].confirm_button,
.kr_contact input[type=button].back_button {
  display: block;
  width: 190px !important;
  margin: 0 auto;
  padding: 15px !important;
  background: #B2B2B2 !important;
  color: #000;
  border: 1px solid #B2B2B2 !important;
  border-radius: 50vh !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.kr_contact input[type=submit].confirm_button:hover, .kr_contact input[type=submit].back_button:hover,
.kr_contact input[type=button].confirm_button:hover,
.kr_contact input[type=button].back_button:hover {
  background: #fff !important;
}

.wpcf7 input:not([type=radio]):not([type=submit]):not([type=checkbox]):focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
  background: #fff;
}

.wpcf7 textarea {
  width: 100%;
}

.wpcf7 input:checked + span {
  font-weight: 700;
  position: relative;
}

.wpcf7 input:checked + span:after {
  content: "";
  border-radius: 50%;
  border: 3px solid #455a64;
  position: absolute;
  left: 4.5px;
  top: calc(50% - 3px);
}

.wpcf7 input[type=submit]:hover,
.wpcf7 input[type=button]:hover {
  box-shadow: 0 8px 4px -4px rgba(0, 0, 0, 0.3);
}

.wpcf7 div[role=alert],
.wpcf7 span[role=alert] {
  color: #f44336;
  display: block;
}

@media screen and (max-width: 767px) {
  .kr_contact {
    padding: 1em;
  }
}/*# sourceMappingURL=kr_blog.css.map */