@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;
}
.header{
	background: none rgba(255, 255, 255, 0.9);
}
body {
  font-size: 16px;
  font-family: system-ui;
  line-height: 1.6875;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.pc {
  display: inline;
}

.sp {
  display: none;
}

.content {
  width: 100%;
  max-width: 1060px;
  margin: 90px auto 60px auto;
}

.fadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

@media screen and (max-width: 767px){
  .content{
    margin-top: 110px;
  }
}
/* ---------------------------------------------------
アイキャッチ
--------------------------------------------------- */
.clinic_web_eyecatch {
  position: relative;
}

.clinic_web_logo {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
}

.clinic_web_title {
  position: absolute;
  top: 100px;
  left: 10px;
  width: 60%;
}

.clinic_web_subtitle {
  position: absolute;
  left: 35px;
  bottom: 200px;
  font-size: 32px;
  font-weight: bold;
  color: #009fb9;
  background: #FFF;
  border: solid 3px #009fb9;
  border-radius: 10px;
  padding: 5px 30px;
}

.clinic_web_lead {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  color: #333333;
  text-shadow: 1px 1px 1px #ffffff, -1px 1px 0px #ffffff, 1px -1px 0px #ffffff, -1px -1px 0px #ffffff, 1px 0px 0px #ffffff, 0px 1px 0px #ffffff, -1px 0px 0px #ffffff, 0px -1px 0px #ffffff;
}
.clinic_web_lead span {
  font-size: 32px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .clinic_web_title {
    position: absolute;
    top: 45px;
    left: 10px;
    width: 60%;
  }
  .clinic_web_subtitle {
    left: 16px;
    bottom: 69px;
    font-size: 15px;
    padding: 5px;
  }
  .clinic_web_lead {
    width: 363px;
    font-size: 6.5px;
  }
  .clinic_web_lead span {
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
  }
}
/* ---------------------------------------------------
私たちについて
--------------------------------------------------- */
.about {
  margin: 20px 0 80px 0;
}

.about_content {
  display: flex;
  justify-content: space-between;
}

.about_left {
  width: 30%;
  text-align: center;
}
.about_left img {
  width: 70%;
  transform: rotate(-5deg);
}

.about_us {
  font-size: 21px;
  color: #009fb9;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  margin: 0 auto 10px auto;
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  background-color: #bce2ea;
}

.about_right {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about_right_text {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 15px;
  border: 2px solid #009fb9;
  border-radius: 20px;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  letter-spacing: 2px;
  padding: 20px 15px;
}

.about_right_text::before {
  position: absolute;
  left: -15px;
  width: 15px;
  height: 30px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background-color: #009fb9;
  content: "";
}
.about_right_text::after {
  position: absolute;
  left: -11px;
  width: 15px;
  height: 30px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: "";
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .about_content {
    flex-direction: column;
  }
  .about_left {
    width: 90%;
    margin: 0 auto;
  }
  .about_left img {
    width: 55%;
  }
  .about_right {
    width: 90%;
    margin: 0 auto;
  }
  .about_right_text {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 300px;
    margin-top: 30px;
    margin-left: 0;
    padding: 0.8em 1.2em;
    border: 3px solid #009fb9;
    border-radius: 5px;
    background-color: #fff;
    font-size: 16px;
    line-height: 2;
  }
  .about_right_text::before {
    position: absolute;
    top: -15px;
    width: 30px;
    height: 15px;
    left: 45%;
    -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
            clip-path: polygon(50% 0, 0 100%, 100% 100%);
    background-color: #009fb9;
    content: "";
  }
  .about_right_text::after {
    position: absolute;
    top: -11px;
    width: 30px;
    height: 15px;
    left: 45%;
    -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
            clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: "";
  }
}
/* ---------------------------------------------------
制作実績
--------------------------------------------------- */
.works {
  margin-bottom: 80px;
  padding: 0;
}

.section_title {
  font-size: 36px;
  color: #009fb9;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.works_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_item {
  width: 30%;
  margin-bottom: 50px;
  position: relative;
}

.works_item_sankaku {
  width: 40%;
  margin: 0 auto;
  display: block;
}

.works_items_text {
  text-align: center;
  font-weight: bold;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 210px;
}

.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn.scrollIn {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .works_items {
    flex-direction: column;
  }
  .works_item {
    width: 90%;
    margin: 0 auto 30px auto;
  }
  .section_title {
    font-size: 31px;
  }
}
/* ---------------------------------------------------
PRICE
--------------------------------------------------- */
.price {
  margin-bottom: 80px;
}
.price #table {
  font-size: 18px;
  font-weight: bold;
  margin: 2em auto 0;
  background: #FFF;
  line-height: 1.2em;
}
.price #table th, .price #table td {
  text-align: center;
  width: 16%;
  min-width: 130px;
  padding: 10px;
  height: 50px;
  border: 1px solid #ccc;
  vertical-align: middle;
  font-weight: bold;
}
.price #table tr {
  font-size: 18px;
  letter-spacing: 1px;
}
.price #table .head {
  background-color: #e2e2e2;
}
.price #table th {
  background-color: #f0f0f0;
}
.price #table th:nth-child(2) {
  background: #fff;
}
.price #table th:nth-child(3) {
  background: #fff;
}
.price #table th:nth-child(4) {
  background: #fff;
}
.price #table td:nth-child(3) {
  background: #fff6e9;
}
.price #table td:nth-child(4) {
  background: #fdede4;
}
.price #table td .black {
  font-size: 38px;
  display: inline-block;
  padding: 10px 0;
}
.price #table td .yellow {
  color: #f39800;
  font-size: 38px;
  display: inline-block;
  padding: 10px 0;
}
.price #table td .yellow_yen {
  color: #f39800;
  font-size: 21px;
}
.price #table td .red {
  color: #e60012;
  font-size: 38px;
  display: inline-block;
  padding: 10px 0;
}
.price #table td .red_yen {
  color: #e60012;
  font-size: 21px;
}

.price_text {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}

@media screen and (max-width: 767px) {
  .price {
    padding: 0 10px;
  }
  .price #table {
    font-size: 16px;
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
  }
  .price #table tr {
    font-size: 16px;
  }
  .price #table th, .price #table td {
    padding: 5px;
    height: 40px;
  }
  .price #table td .black {
    font-size: 34px;
  }
  .price #table td .yellow {
    font-size: 34px;
  }
  .price #table td .red {
    font-size: 34px;
  }
}
/* ---------------------------------------------------
アプライドグループ
--------------------------------------------------- */
.applied_g {
  margin-bottom: 20px;
}

.applied_g_content {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.applied_g_content_left {
  width: 40%;
  font-size: 21px;
  line-height: 2;
  letter-spacing: 2px;
}
.applied_g_content_left p {
  font-weight: bold;
}

.applied_g_content_right {
  width: 48%;
}

.tenpo_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  margin: 50px auto;
  padding: 0.9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #009fb9;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
.tenpo_btn::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.tenpo_btn :hover {
  background-color: #008fa9;
}

@media screen and (max-width: 767px) {
  .applied_g {
    padding: 0 10px;
  }
  .applied_g_content {
    flex-direction: column;
  }
  .applied_g_content_left {
    width: 90%;
    font-size: 19px;
    margin: 0 auto;
  }
  .applied_g_content_right {
    width: 90%;
    margin: 20px auto 0 auto;
  }
}/*# sourceMappingURL=style.css.map */
/*--------------------------------
 フッター
---------------------------------*/
.footer {
    padding-top: 0 !important;
}
.footer_inquery{
	padding-left: 0 !important;
}
.footer_ad_city{
	flex-direction: column !important;
}
.footer_ad_city_after{
	padding-left: 0 !important;
}
.padding-left{
	padding-right: 0 !important;
}
@media screen and (max-width: 767px){
.footer_ad_city_before,
.footer_ad_solu_before {
	line-height: 2 !important;
    }
}

hr{
	margin: 30px auto !important;
}
@media screen and (max-width: 767px){
	hr{
	width: 350px;
	}
}

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 #009fb9;
    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;
}
.kr_contact_con {
  padding: 20px 20px 0;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .kr_contact_con {
  }
}
.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;
}