@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  color: #000;
}

body .sp-item {
    display: none !important; }
  body .pc-item {
    display: block !important; }



/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}
/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/




h1 {
  position: relative;
  padding: 0.5em;
  text-align: center;
  color: #42210b;
}
h1:before {
 position: absolute;
  bottom: 15px;
  left: calc(50% - 30px);
  width: 85px;
  height: 6px;
  content: '';
  background-color: #ea9846;
  border-radius: 2px;
}



h2{
  font-family:  "Hiragino Maru Gothic ProN", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
h2 .p{
line-height: 1;
}


h3 {
text-align: center;
background: #fff;/*背景色*/
padding: 0.2em 0.5em;/*文字まわり（上下左右）の余白*/
border-radius: 10px;
font-size: 1em;
margin: 0 7em 1em;

}
h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  font-weight: bold;
}


h5 {
  padding: 0em 1em;
  border-bottom: 3px dotted #000;
  background: #f4f4f4;
}

h6 {
font-size:2em;
  position: relative;
  padding: 0.5em;
  text-align: center;
  color: #42210b;
}
h6:before {
 position: absolute;
  bottom: 15px;
  left: calc(50% - 30px);
  width: 85px;
  height: 6px;
  content: '';
  background-color: #ea9846;
  border-radius: 2px;
}







/* 共通 ------------------------------*/
*[class*="cp-"],
*[class*="cp-"] * {
    box-sizing: border-box;
}

/* 画像 */
img {
    vertical-align: bottom;
}

/* ヘッダー ------------------------------*/
/* ロゴ */
.cp-header02__logo {
    position: fixed;
    width: 100%;
    padding: 14px 0;
    z-index: 1;
    background: #fff;
    text-align: center;
}
.cp-header02__logo img {
    height: 32px;
}
.cp-header02__logo img:hover {
    opacity: 0.7;
    transition: .2s ease-in-out;
}

/* ナビゲーション */
.cp-header02__navi {
  margin-top: 1em;
    padding-top: 0em;
    background: #fffcf7;
}

.cp-header02__items {
  font-size: 1.9em;
  font-weight: bold;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 850px;
    margin: auto;
    padding-right: 20px;
    padding-left: 20px;
}
.cp-header02__item {
    position: relative;
}
.cp-header02__item:not(:last-child):after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    width: 2px;
    height: 28px;
    margin: auto;
    opacity: 0.4;
    background: #eb6c00;
}
.cp-header02__item a {
    display: inline-block;
    padding: 12px 16px;
    transition: .2s ease-in-out;
    text-decoration: none;
  color: #42210b;


}
.cp-header02__item a:hover {
    opacity: 0.7;
  color:#ccc;
}

/* ハンバーガーメニュー */
.cp-header02__hamburger__btn,
.cp-header02__hamburger__content {
    display: none;
  color:#ccc;
}
.cp-header02__hamburger__item a {
    text-decoration: none;
}

@media screen and (max-width: 1024px) {
    /* ナビゲーション */
    .cp-header02__navi {
        display: none;
    }

    /* ハンバーガーメニュー */
    .cp-header02__hamburger__button {
        display: block;
        position: fixed;
        top: 9px;
        right: 15px;
        width: 42px;
        height: 42px;
        z-index: 3;
        cursor: pointer;
        text-align: center;


    }
    .cp-header02__hamburger__button.active span {
        background: #000;

    }
    .cp-header02__hamburger__button.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        transform: rotate(-45deg);

    }
    .cp-header02__hamburger__button.active span:nth-child(2),
    .cp-header02__hamburger__button.active span:nth-child(3) {
        top: 16px;
        transform: rotate(45deg);


    }
    .cp-header02__hamburger__button span {
        display: block;
        position: absolute;
        width: 35px;
        height: 2px;
        left: 6px;
        background: #000;
        transition: 0.3s ease-in-out;

    }
    .cp-header02__hamburger__button span:nth-child(1) {
        top: 10px;

    }
    .cp-header02__hamburger__button span:nth-child(2) {
        top: 20px;
    }
    .cp-header02__hamburger__button span:nth-child(3) {
        top: 30px;
    }
    .cp-header02__hamburger__content {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        transform: translateX(100%);
        width: 100%;
        height: 100%;
        padding: 15px;
        transition: all 0.3s;
        color: #000;
        background: #f9bb00;
        text-align: center;

    }
    .cp-header02__hamburger__content.active {
        transform: translateX(0%);

    }


/*	ハンバーガー開いた後の文字*/
    .cp-header02__hamburger__item a {
        display: inline-block;
    font-size: 18px;
        padding: 16px;
        color: #fff;
    font-weight: 700;
    }
}

@media screen and (max-width: 599px) {
    /* ハンバーガーメニュー */
    .cp-header02__hamburger__btn {
        right: 10px;
    }
}






/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #fffcf8;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.8em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.5;
}


.article{
  width: 100%;
}


/*カラム全体の幅を変更する*/


.top_image_in {
  width: 1000px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}



.section_inr {
  width: 950px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
  font-size: 1.2em;
}

.section_inr2 {
  width: 850px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
  font-size: 1em;
}




.section {
  background-color: #FFFEF0;
  padding: 1.5em 3em;
}



p.font1{
  line-height: 1.3;
  color:#F3651A;
}



/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
/*
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
*/
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 42%;
  float: left;
  margin: 1em 0em 0em;
}
/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 25%;
  float: right;
  margin: 1.8em 0em 0em;
}
/*ヘッダーの電話ボタン*/
.header_tel {
  width: 27%;
  float: right;
  margin: 2em 1em 0em;
}
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img, .header_mail img, .header_tel img {
  width: 100%;
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}
.top_image_in img {
  width: 100%;
}
/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.seciton_01 {
  background: #ffffff;
  padding: 1em 2em;
}
.section_02 {
  background-color: #FFFEF0;
  padding: 1.5em 3em;
}

.seciton_03 {
  padding: 1em 2em;
  background-image: url(../images/bg2.png);/* 全体の背景画像 */
  background-repeat: repeat;            /* 背景を繰り返 */
  background-position: 50% 50%;            /* 背景画像の位置は画面中央 */
  background-size:auto;


}









/*--------------------------------------------------
対応可能な治療~ご相談
-----------------------------------------------------*/
.icon_box{
display: flex;
flex-wrap: wrap;
padding: 0em 2em;
justify-content: space-around;
align-items: center;

}

  .flex_item{
  margin-bottom: 0.4em;


  }





.check_box{
  border: 3px solid #f8bb53;
  padding: 1em 1em 1em;
  background-color: #fff;
  margin-bottom: 1em;
  margin-top: 1.5em
}

.check_box img{
width: 90%;

}




/*--------------------------------------------------
流れ〜費用
-----------------------------------------------------*/
.nagare{
padding: 1em 1em;
margin-bottom: 2.3em;
}

.border_nagare{
border-bottom: 3px dotted #ccc;
padding-bottom: 0em;
margin-bottom: 0.7em;
}



.caution2{
color: black;
font-size:0.8em;
text-align: center;
}

.caution3{
color: black;
font-size:1em;
padding: 0 0.5em 0
}


.hiyou_bg{
padding: 1em 2em;
background-image: url(../images/bg3.jpg);/* 全体の背景画像 */
  background-repeat: no-repeat;            /* 背景を繰り返さない */
  background-position: 50% 50%;            /* 背景画像の位置は画面中央 */
  background-size:cover;
}


.title_hiyou {
font-size:2em;
  position: relative;
  padding: 0.5em;
  text-align: center;
  color: #42210b;
font-weight: 600;
}

.hiyou{
padding: 0em 1em 1em;
margin-bottom: 1em;

}


.title_hiyou:before {
 position: absolute;
  bottom: 15px;
  left: calc(50% - 30px);
  width: 85px;
  height: 6px;
  content: '';
  background-color: #ea9846;
  border-radius: 2px;
}




/*--------------------------------------------------
対応可能な範囲
-----------------------------------------------------*/

/* 共通 ------------------------------*/
*[class*="cp-"],
*[class*="cp-"] * {
    box-sizing: border-box;
}

/* 見出し ------------------------------*/
.cp-title02 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.9em;
    line-height: 1.2;
    color: #ef701b;
    font-weight: bold;
}

.cp-title02:before,
.cp-title02:after {
    content: '';
    width: 80px;
    height: 2px;
    background-color: #ea9846;
}
.cp-title02:before {
    margin-right: 24px;
}
.cp-title02:after {
    margin-left: 24px;
}


@media screen and (max-width: 599px) {
    .cp-title02 {
        font-size: 25px;
    }
    .cp-title02:before,
    .cp-title02:after {
        content: '';
        width: 22px;
        height: 2px;
        background-color: #707070;
    }
    .cp-title02:before {
        margin-right: 12px;
    }
    .cp-title02:after {
        margin-left: 12px;
    }
}



.cp-title03 {
  margin-bottom: 0.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4em;
    line-height: 1.2;
    color: #ef701b;
    font-weight: bold;
}

.cp-title03:before,
.cp-title03:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: #ea9846;
}
.cp-title03:before {
    margin-right: 14px;
}
.cp-title03:after {
    margin-left: 14px;
}


@media screen and (max-width: 599px) {
    .cp-title03 {
        font-size: 26px;
    }
    .cp-title03:before,
    .cp-title03:after {
        content: '';
        width: 48px;
        height: 2px;
        background-color: #707070;
    }
    .cp-title03:before {
        margin-right: 16px;
    }
    .cp-title03:after {
        margin-left: 16px;
    }
}







.taiou{
color: #42210b;
margin: auto;
width: 60%;
font-size: 1em;
text-align: center;
  padding: 0.4em 0em;
  background: #fff;
  border-radius: 10px ;
/*margin: 0 9em;*/

}


/*--------------------------------------------------
摂食嚥下の治療ができる訪問歯科
-----------------------------------------------------*/

.table2{
color: #42210b;
margin: auto;
width: 60%;
font-size: 1em;
text-align: center;
  padding: 0.4em 0em;
  background: #fff7eb;
  border-radius: 10px ;
/*margin: 0 9em;*/
}

.text_table{
color: #484848;
padding: 1.5em 1em;
margin: 0 2em;

/* border */
border: 1px solid #ffba27;

/* border-radius */
border-radius: 8px;

/* box-shadow */
box-shadow: 0px 0px 20px -5px rgba(240,191,130,0.6) inset;
}

.text_table2{
color: #484848;
padding: 1.5em 1em;
margin: 0 2em;
/* border */
border: 1px solid #ffba27;

/* border-radius */
border-radius: 8px;

/* box-shadow */
box-shadow: 0px 0px 20px -5px rgba(240,191,130,0.6) inset;
}



/* 共通 ------------------------------*/
*[class*="cp-"],
*[class*="cp-"] * {
    box-sizing: border-box;
}

/* 画像 */
img {
    vertical-align: bottom;
}

/* テキスト */
.cp-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #707070;
}
* + .cp-text {
    margin: 16px 0 0 0;
}

/* 画像 + 見出し + テキスト ------------------------------*/
/* アイテム */
.cp-leftAndRight02__item {
  width: 100%;
    display: flex;
    align-items: center;
}
.cp-leftAndRight02__item:nth-child(2n) {
    flex-direction: row-reverse;
}
.cp-leftAndRight02__item:not(:last-child) {
    margin-bottom: 40px;
}

.cp-leftAndRight02__info {
  font-size: 0.9em;
    padding: 1em 1em;
  color: #484848;
}

/* 画像 */
/*
.cp-leftAndRight02__image {
    width: 60%;
}
*/
.cp-leftAndRight02__image img {
    width: 100%;
}

/* 見出し */
.cp-leftAndRight02__title {
  font-size: 1.4em;
  text-align: center;

border-bottom: 1px dotted #ccc;
 padding-bottom: 0.3em;
margin-bottom: 0.3em;

    margin-bottom: 1em;
    line-height: 1.2;
    color: #484848;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    /* アイテム */
    .cp-leftAndRight02__item {
        display: block;
    }

    /* 画像 */
    .cp-leftAndRight02__image {
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    .cp-leftAndRight02__info {
        padding: 24px 16px 16px;
    }

    /* 見出し */
    .cp-leftAndRight02__title {
        margin-bottom: 16px;
    }
}

/*float*/
.box_1{
width: 100%;
display: flex;
margin: 1.5em 0;
align-items: center;

}



.float_left{
width: 60%;
margin-right: 0.5em;

}

.float_right{
width: 60%;
margin-right: 0.5em;

}



.image_r{
width: 35%;

}

.image_left{
width: 40%;

}



.info_title{
  font-size: 1.4em;
  text-align: center;

border-bottom: 1px dotted #ccc;
 padding-bottom: 0.3em;
margin-bottom: 0.3em;

    line-height: 1.2;
    color: #484848;
    font-weight: bold;

}


.float_text{
font-size: 0.9em;
 padding: 0.5em 1em;
color: #484848;
text-align: justify;

}


.midashi{
 padding: 0.3em 0.7em;
 border-left: 8px solid #f9bb00;
margin: 1.8em 1em 1em;
}




.info_title2{
  font-size: 1.4em;
  text-align: center;

border-bottom: 5px dotted #f9bb00;
 padding-bottom: 0.3em;
margin-bottom: 0.3em;

    line-height: 1.2;
    color: #484848;
    font-weight: bold;

  margin: 0em 0.8em;


}




/*--------------------------------------------------
q_a
-----------------------------------------------------*/


/* 共通 ------------------------------*/
*[class*="cp-"],
*[class*="cp-"] * {
    box-sizing: border-box;
}

/* 見出し ------------------------------*/
.q_a_title {
    position: relative;
    padding-bottom: 16px;
    font-size: 2em;
    line-height: 1.2;
    color: #42210b;
    text-align: center;
    font-weight: bold;
  margin-bottom: 0.5em;
}

.q_a_title span{
color: orange;

}

.q_a_title::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 56px;
    margin: auto;
    background: #ea9846;
}
.q_a_title span {
    display: inline-block;
    font-size: 16px;
}

@media screen and (max-width: 599px) {
    .q_a_title {
        font-size: 26px;
    }
    .q_a_title span {
        font-size: 14px;
    }
}




.box_text_q_a{
  font-size: 1.4em;
  margin-bottom: 0em;
}

.accordion {
  width: 100%;
}

/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
  font-size: 0.9em;
  display: block;
  padding: 10px 80px 10px 10px;
  background: #fddf94;
  cursor: pointer;
  position: relative;
border-bottom: 0px solid #321908;
color: #000;
border-radius: 15px;

}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #ff6f00;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);

}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);

}

/* アコーディオン中身部分 */
.accordion-inner {
  font-size: 0.9em;
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;

  /* 表示速度の設定 */
  cursor: pointer;
  margin-bottom: 0.5em;

}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}
/* ↑ここまで共通 */


/* Q&A追加 */
.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.2em;
  display: block;
  position: absolute;
  top: -.4em;
  left: -1.3em;
}

.accordion_qa .Q::before {
  content: 'Q.';
  color: #ff6f00;
}

.accordion_qa .A::before {
  content: 'A.';
 color: #ff4631;

}

.accordion_qa .accordion-open {
  padding-left: 2.5em;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 2.5em;
}
/* Q&A追加ここまで */






/*--------------------------------------------------
医院紹介・診療時間
-----------------------------------------------------*/

.jikan{
    color: #42210b;
  margin-top: 1.4em;

}




.biz-hour {
  width: 870px;
  margin: auto;
  font-size: 0.9em;
  border-collapse: collapse;
  font-weight: 700;
}


@media screen and (max-width: 640px) {
  .biz-hour {/* スマホのときだけ親要素いっぱいに */
    width: 100%;
  }
}
.biz-hour th, .biz-hour td {
  padding: 10px;
  text-align: center;
  /* 枠線。色を変えたい時は#ff6680というところをお好みで */
  border: 1px solid #ffb680;
}

/* 上段。backgroundを書き換えれば背景色が変わります。 */
.biz-hour th {
  background: #ffd8bd;
  font-weight: normal;
}

/* 土曜日の文字色 */
.biz-hour th.sat {
  color: #3db2da;
}

/* 日曜日の文字色 */
.biz-hour th.sun {
  color: #e66a6a;
}




/*--------------------------------------------------
MAP
-----------------------------------------------------*/


.map_box{
width: 870px;
text-align: center;
margin: auto;
margin-top: 1em;

}


.iframe-wrap {
  position: relative;
width: 100%;
padding-top: 56.25%; /* 比率を16:9に固定 */
}
.iframe-wrap iframe {

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
ul.checklist {
  border: 1px solid #ccc;
  list-style: none;
  padding: 1em;
}
ul.checklist li {
  background-image: url("../images/icon-check03-red.png");
  background-repeat: no-repeat;
  background-size: 3.5%;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}
ul.checklist li:last-child {
  margin-bottom: 0em;
}
/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/


.tb-wrap{
  width:100%;
/*  overflow-x:scroll;*/
}

.orange_t .orange_g{
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
/*  border-collapse: collapse;*/
/*  width: 700px;*/
}
th, td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
th {
color: #42210b;
font-size: 1.2em;
  background-color: #fde499;
  font-weight: bold;
  text-align: center;

}
td {
  background-color: #fff;
  text-align: left;
}


.orange_g th{
color: #42210b;
font-size: 1em;
  background-color: #f2fce3;
  font-weight: bold;
  text-align: center;
}




.orange_p th{
color: #42210b;
font-size: 1em;
  background-color: #ffeeef;
  font-weight: bold;
  text-align: center;

}








table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}
th, td {
font-size: 1em;
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
th {
  background-color: #fde499;
  font-weight: bold;
  text-align: center;
}
td {
  background-color: #fff;
  text-align: left;
}


table .table_style_01 {
font-size: 0.8em;
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}
th, td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
th {
  background-color: #fde499;
  font-weight: bold;
  text-align: center;
}
td {
  background-color: #fff;
  text-align: left;
}










/*--------------------------------------------------
フォーム設定
-----------------------------------------------------*/
.mailform {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1.5em 1em 1.5em;
}

.mailform img{
width: 80%;
}

.input {
  padding: 0 2em;
}
.input_style {
  background-color: #FFFBF0;
  width: 100%;
  height: 60px;
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.4em;
}
input[type="image"] {
  width: 100%;
}
.caution {

  text-align: center;
  font-size: 0.9em;
  color: #42210b;
}
/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.box_qa {
  background-color: #efefef;
  padding: 1em;
}
.box_qa_q {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
  border-bottom: 1px solid #ccc;
  font-size: 1.2em;
  font-weight: bold;
  color: #D10003;
}
.box_qa_a {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
}
.box_qa_q p, .box_qa_a p {
  text-indent: -2em;
}
/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-color: #000000;
  padding: 1.5em 1em;
  text-align: center;
}


.area_cta_inr {
  background-color: #fff;
  padding: 1em 2em;
  overflow: auto;
}
.btn_left {
  float: left;
  width: 49%;
}
.btn_right {
  float: right;
  width: 49%;
}



.section_act {
  background-color: #f9bb00;
/* background-color: #e5e5e5;*/

  padding: 2.5em 2em;
}


.act_area{
  background-color: #fff;
  padding: 1.5em;
}

.btn_flex{
display: flex;
justify-content: space-between;
align-items: center;
}

.menu1{
width: 49%;
}

.menu2{
width: 50%;


}

/* 歯科検診予約 / お問い合わせフォーム */
.contact_form {
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding: 3rem;
  border: solid 2px #f9bb00;
  border-radius: 0.75rem;
}


/*--------------------------------------------------
固定フッター部分
-----------------------------------------------------*/
.fix_menu_smartphone{
  display: none;
}



/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #eb6c00;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}