@charset "UTF-8";
/*--ふくおか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かいてください
}
-----------------------------------------------------*/
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
.header {
  z-index: 100 !important;
}

figure img {
  display: block;
  margin: auto;
}

.wrapper {
  margin-top: 110px;
}

.main-wrapper {
  width: 100%;
  margin-top: 60px;
}

.menbon_eyecatch {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.menbon_eyecatch .menbon_eyecatch_fig {
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: initial;
}
@media screen and (max-width: 1230px) {
  .menbon_eyecatch .menbon_eyecatch_fig {
    height: auto;
  }
}
.menbon_eyecatch .menbon_eyecatch_fig img {
  position: relative;
  height: 100%;
  width: auto;
  top: 0;
  margin: initial;
}
.menbon_eyecatch img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -100px;
}
@media screen and (max-width: 1230px) {
  .menbon_eyecatch {
    height: auto;
  }
  .menbon_eyecatch img {
    position: initial;
  }
}

.page-menbon {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto 60px auto;
}
@media screen and (max-width: 1200px) {
  .page-menbon {
    width: 90%;
  }
}

.area-kokokukikaku > h1 {
  font-size: 2em;
  font-weight: bold;
  color: #251e1c;
  margin-bottom: 2em;
}
.area-kokokukikaku > h1 span {
  font-size: 0.5em;
}
.area-kokokukikaku > h1 img {
  max-width: 400px;
  width: 100%;
}

.area-kokokukikaku > p.kikaku {
  font-size: 1.6em;
  color: #ca2626;
  margin-top: 30px;
  text-align: center;
}
.area-kokokukikaku_lists{
	counter-reset: listnum;
	margin-left: 30px;
}
.area-kokokukikaku_lists li{
/* 	display: flex; */
    align-items: center;
    padding: .3em;
}
.area-kokokukikaku_txt {
  padding-left: 50px;
  margin: 30px 0;
  position: relative;
}
.area-kokokukikaku_txt h2 {
  font-size: 18px;
  font-weight: bold;
}
.area-kokokukikaku_title{
  font-size: 18px;
  font-weight: bold;
}
.area-kokokukikaku_txt p {
  font-size: 20px;
  line-height: 2;
}
/* .area-kokokukikaku_txt:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  background-size: contain;
} */
.area-kokokukikaku_txt h2::before {
    display: block;
    position: absolute;
    left: -31px;
    top: 7px;
    min-width: 30px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: #d02525;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 30px;
    text-align: center;	
	counter-increment: listnum;
	content: counter(listnum);
}
/* .area-kokokukikaku_txt:nth-child(1):before {
  background-image: url(../img/menbon_230429/kikaku1.jpg);
}
.area-kokokukikaku_txt:nth-child(2):before {
  background-image: url(../img/menbon_230429/kikaku1.jpg);
} */
/* .area-kokokukikaku_txt:nth-child(3):before {
  background-image: url(../img/menbon_230429/kikaku1.jpg);
}
.area-kokokukikaku_txt:nth-child(4):before {
  background-image: url(../img/menbon_230429/kikaku2.jpg);
}
.area-kokokukikaku_txt:nth-child(5):before {
  background-image: url(../img/menbon_230429/kikaku3.jpg);
}
.area-kokokukikaku_txt:nth-child(6):before {
  background-image: url(../img/menbon_230429/kikaku4.jpg);
}
.area-kokokukikaku_txt:nth-child(7):before {
  background-image: url(../img/menbon_230429/kikaku5.jpg);
}
.area-kokokukikaku_txt:nth-child(8):before {
  background-image: url(../img/menbon_230429/kikaku6.jpg);
}
.area-kokokukikaku_txt:nth-child(9):before {
  background-image: url(../img/menbon_230429/kikaku7.jpg);
}
.area-kokokukikaku_txt:nth-child(11):before {
  background-image: url(../img/nikubon_2025/kikaku8.jpg);
} */


.area-koukokukikaku_present {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 1em;
  border: solid 3px orange;
  border-radius: 20px;
}
.area-koukokukikaku_present h3 {
  display: block;
  position: absolute;
  top: -1em;
  left: 10px;
  font-size: 1.6em;
  padding: 1px 2em;
  background-color: white;
  border: solid 5px orange;
  color: orange;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .area-koukokukikaku_present h3 {
    font-size: 1.2em;
  }
}
.area-koukokukikaku_present .donburi {
  width: 170px;
}

h2.red_title {
  display: block;
  margin: 10px 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  font-size: clamp(1.2em, 1.6vw, 1.6em);
  border-radius: 10px;
  padding: 0.5em 1em;
  font-weight: bold;
  background: white;
  border: solid 5px #f4d923;
}

.mt_negative_30 {
  margin-top: -30px !important;
}

.area-digital {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 30px;
  background-color: #f4d923;
  border-radius: 20px;
  margin-top: 70px;
}
.area-digital .area-digital_exp {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .area-digital {
    padding: 10px 5px;
  }
}
.area-digital .area-digital_exp_txt {
  width: 100%;
  max-width: 795px;
  margin: auto;
}
.area-digital .area-digital_exp_txt p {
  font-weight: bold;
  font-size: 1.2em;
}
.area-digital .area-digital_exp_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 20px;
}
.area-digital .area-digital_exp_link span {
  width: 100%;
}
.area-digital .area-digital_exp_link a {
  display: block;
  padding: 5px 10px;
  background-color: #ffffff;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #000;
  border-radius: 100vh;
  border: solid 3px #b1b1b1;
  width: 300px;
  text-align: center;
  position: relative;
  padding-left: 30px;
}
.area-digital .area-digital_exp_link a:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 30px;
  width: 20px;
  height: 20px;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .area-digital .area-digital_exp_link a:before {
    left: 14px;
  }
}
.area-digital .area-digital_exp_link a:nth-child(1):before {
  background-image: url(https://e-fukuoka.co.jp/wp-content/themes/efukuoka/asset/img/menbon_230429/favicon.ico);
}
.area-digital .area-digital_exp_link a:nth-child(2):before {
  background-image: url(https://e-fukuoka.co.jp/wp-content/themes/efukuoka/asset/img/menbon_230429/instagram.png);
}
.area-digital .area-digital_exp_link a:nth-child(3):before {
	background-image: url(https://e-fukuoka.co.jp/wp-content/themes/efukuoka/asset/img/nikubon_2025/X.png);
}
.area-digital .area-digital_exp_link a:nth-child(5):before {
  background-image: url(https://e-fukuoka.co.jp/wp-content/themes/efukuoka/asset/img/menbon_230429/image14.jpg);
}
.area-digital .area-digital_exp_link a:hover {
  scale: 1.05;
}
@media screen and (max-width: 768px) {
  .area-digital .area-digital_exp_link a {
    width: 260px;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 599px) {
  .area-digital .area-digital_exp_link a {
    width: 227px;
    font-size: 0.8em;
    margin: 20px 0;
  }
}

.area-concept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.area-concept_img{
	margin: 30px 0;
}

.area-concept_point {
  width: 55%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .area-concept_point {
    width: 100%;
	margin-top: 10px;
  }
}
.area-concept_point h3 {
  font-size: 1.5em;
  color: #ed2626;
  margin-top: 30px;
}
.area-concept_point p {
  font-size: 1.2em;
}

.area-concept_point_img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .area-concept_point_img {
    width: 100%;
    margin-top: 35px;
  }
}

.area-concept_editpage {
  width: 55%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .area-concept_editpage {
    width: 100%;
    margin-top: 35px;
  }
}
.area-concept_editpage h3 {
  font-size: 1.6em;
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}
.area-concept_editpage h3:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5em);
  width: 1em;
  height: 1em;
  background-color: orange;
  border-radius: 100vh;
}
.area-concept_editpage p {
  padding-left: 30px;
  margin-bottom: 20px;
}

.area-concept_editpage_img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .area-concept_editpage_img {
    width: 100%;
    margin-top: 35px;
  }
}

.area-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.area-table .area-table_h2 {
  font-size: 1.6em;
  color: #ca2626;
  margin-top: 30px;
}
.area-table .area-table_h2 span {
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  .area-table .area-table_p {
    font-size: 0.8em;
  }
}
.area-table .area-table_fig_wrap {
  width: 100%;
  overflow-x: scroll;
}
.area-table .area-table_fig_wrap figure {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .area-table .area-table_fig_wrap figure {
    width: 768px;
  }
}

.area-table_schedule {
  width: 500px;
}

.area-table_h4 {
  display: grid;
  background-color: #ed2626;
  color: #fff;
  width: 100%;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.area-table_h4 + p {
  border: solid 1px #ed2626;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
}

.kr_contact_con {
  padding: 20px 20px 0;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .kr_contact_con {
/*     padding: 9em 1em 0; */
  }
}
.kr_contact_con .kr_contact_ttl {
  margin-bottom: 1em;
  font-size: 28px;
  font-family: Verdana, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #232323;
  text-align: center;
}
.kr_contact_con .kr_contact_box label,
.kr_contact_con .kr_contact_box .wpcf7-form-control-wrap {
  display: block;
}
.kr_contact_con .kr_contact_box label input {
  width: 100%;
}
.kr_contact_con .kr_contact_box input[type=submit] {
  display: block;
  margin: 0 auto;
  background: #01bea2;
}/*# sourceMappingURL=menbon_250317.css.map */

section{
	padding: 0;
}

#page_contact{
	position: fixed;
    left: 10px;
    top: 80vh;
    z-index: 60;
    background: rgba(255, 255, 255, 0.7);
    border: solid 1.5px #d02525;
    border-radius: 100%;
    font-size: 1.2rem;
    text-align: center;
    width: 80px;
    height: 80px;
    line-height: 1.2;
}

#page_contact span{
	transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
	font-size: 16px;
	padding: 17px 0;
	display: block;
	font-weight: bold;
	color: #455a64;
	line-height: 1.5;
}