@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
/*-------------------------------------------------------------------
　reset
-------------------------------------------------------------------*/

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  color: #000;
}

a:hover {
  text-decoration: none;
}

/*-------------------------------------------------------------------
　br
-------------------------------------------------------------------*/
.br_pcdis {
  display: block;
} /*1024px以上表示*/
.br_pc {
  display: block;
}
.br_sp {
  display: none;
}
.br1200 {
  display: block;
}
.br1024 {
  display: none;
}
.br480sp {
  display: none;
}
.br_multi {
  display: none;
} /*PCなし1300あり1024なし767なし480あり*/

.dis1024 {
  display: none;
}

.page-break-before {
  page-break-before: always;
} /*--印刷用（直前で改行）--*/
.page-break-after {
  page-break-after: always;
} /*--印刷用（直後で改行）--*/

/* ---- 1300px ------------- */
@media only screen and (max-width: 1300px) {
  .br_multi {
    display: block;
  } /*PCなし1300あり1024なし767なし480あり*/
}

/* ---- 1200px ------------- */
@media only screen and (max-width: 1200px) {
  .br1200 {
    display: none;
  }
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  .br_pcdis {
    display: none;
  }
  .br1024 {
    display: block;
  }
  .br_multi {
    display: none;
  } /*PCなし1300あり1024なし767なし480あり*/

  .none1024 {
    display: none;
  }
  .dis1024 {
    display: block;
  }
}

/* ---- sp 767-------------- */
@media only screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
  .br_multi {
    display: none;
  } /*PCなし1300あり1024なし767なし480あり*/
}

/* ---- sp 480-------------- */
@media only screen and (max-width: 480px) {
  .br480sp {
    display: block;
  }
  .br_multi {
    display: block;
  } /*PCなし1300あり1024なし767なし480あり*/
}

/*-------------------------------------------------------------------
　header & navi
-------------------------------------------------------------------*/
.naviArea {
  width: 100%;
  height: 167px;
  display: grid;
  grid-template-areas:
    'logo mail'
    'navi navi';
  align-items: end;
  justify-content: space-between;
  background: #fff;
  z-index: 200;
  border: 0px solid #000;
  font-size: 20px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

.naviArea ul {
  padding: 0;
}

.naviArea a:hover {
  text-decoration: none;
}
.naviArea h1 {
  display: none;
}

#hd_logo {
  width: 280px;
  margin-left: 30px;
  grid-area: logo;
  margin-bottom: 6px;
}

#hd_logo a {
  display: inline-block;
}

#hd_logo img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

#hd_mail {
  width: 330px;
  font-size: 16px;
  grid-area: mail;
  justify-self: end;
  margin-right: 100px;
  margin-top: 23px;
}

#hd_mail i {
  font-size: 26px;
  margin: 0 15px 0 0;
}

#hd_mail a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 0;
  border-radius: 10px;
  border: 2px solid #000;
  box-sizing: border-box;
}

#hd_mail a:hover {
  color: #fff;
  background: #e5340b;
  border: 2px solid #fff;
  transition: 0.5s;
}

#g_navi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 100px; /* -- margin-right: 120px; -- */
  grid-area: navi;
}

#g_navi ul {
  position: relative;
  display: flex;
  align-items: center;
  list-style-type: none;
  margin: 0;
}

#g_navi ul li {
  height: 90px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 15px 0;
  font-weight: bold;
  text-align: center;
}

#g_navi ul li a {
  position: relative;
  display: block;
  color: #000;
  padding: 30px 0;
}

#g_navi ul li a:hover {
  color: #e86161;
}

#g_navi ul li.navTit:hover {
  color: #e86161;
  transition: all 0s;
  cursor: pointer;
}

#g_navi .sub-menu {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  display: block;
  position: absolute;
  top: 90px;
  left: 5%;
  width: 210px;
  background: #fbf5f0;
  box-sizing: border-box;
  border: 0px solid #000;
}

#g_navi .sub-menu a {
  display: block;
  padding: 5px 0;
  margin: 0;
  box-sizing: border-box;
}

#g_navi .sub-menu li {
  display: block;
  padding: 8px 15px;
  margin: 0;
  height: auto;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px dashed #b5b5b5;
}

#g_navi .sub-menu li:last-child {
  border-bottom: 0px dashed #000;
}

#g_navi ul > li:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#g_navi ul > li:hover a {
  color: #e86161;
  text-decoration: none;
  opacity: 1;
}

#g_navi li:hover ul.sub-menu {
  top: 90px;
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}

#g_navi li:hover ul.sub-menu a {
  color: #000;
  text-align: left;
  opacity: 1;
}

#g_navi li:hover ul.sub-menu a:hover {
  color: #e86161;
}

/* ---- pc 1550px ---------- */
@media only screen and (max-width: 1550px) {
  .naviArea {
    grid-template-areas: 'logo mail';
    align-items: center;
    height: 100px;
  }
  #hd_logo {
    margin-bottom: 0;
  }
  #g_navi {
    display: none;
    align-items: center;
    margin-right: 100px; /* -- margin-right: 120px; -- */
  }
  #hd_mail {
    margin-top: 0;
  }
}

/* ---- pc 1200px ---------- */
@media only screen and (max-width: 1200px) {
  #g_navi {
    margin-right: 90px;
  }
  #g_navi ul li {
    padding: 0 7px 0;
  }
  #g_navi .sub-menu {
    left: 0%;
  }
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  .naviArea {
    width: 100%;
    height: 60px;
    background: #fff;
  }

  #hd_logo {
    width: 200px;
    margin-left: 10px;
  }

  #hd_mail {
    margin-right: 80px;
    width: 280px;
  }

  #hd_mail a {
    padding: 6px 0;
  }

  #g_navi {
    display: none;
  }
}

/* ---- sp 767 ------------- */
@media only screen and (max-width: 767px) {
  #hd_mail {
    display: none;
  }
}

/*-------------------------------------------------------------------
　hamburger menu
-------------------------------------------------------------------*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 0;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border: 0px solid #000;
  background: #fff;
}

.openbtn > div {
  position: relative;
  width: 36px;
}

/*×に変化*/
.openbtn span {
  width: 100%;
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 22px;
  height: 3px;
  border-radius: 2px;
  background-color: #000;
}

.openbtn span:nth-of-type(1) {
  top: 25px;
}
.openbtn span:nth-of-type(2) {
  top: 38px;
}
.openbtn span:nth-of-type(3) {
  top: 51px;
}

.openbtn.active span:nth-of-type(1) {
  top: 33px;
  left: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
  background-color: #000;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 45px;
  left: 22px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
  background-color: #000;
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  .openbtn {
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
  }

  /*×に変化*/
  .openbtn span {
    width: 100%;
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 13px;
    height: 3px;
    border-radius: 2px;
    background-color: #000;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 28px;
  }
  .openbtn span:nth-of-type(3) {
    top: 41px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 23px;
    left: 13px;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 35px;
    left: 13px;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#menu {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  top: 0; /*ナビの位置と形状*/
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #fff;
  transition: all 0.3s; /*動き*/
  font-weight: bold;
  line-height: 1.8;
  font-size: 20px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

#menu ul,
#menu p {
  margin: 0;
  padding: 0;
}

/*-- アクティブクラスがついたら透過なしにして最前面へ --*/
#menu.panelactive {
  opacity: 1;
  z-index: 999;
}

/*-- ナビゲーションの縦スクロール --*/
#menu.panelactive #g_navList {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*-- ナビゲーション --*/
#menuTop {
  width: 85%;
  margin: 0 auto;
  padding: 120px 0 50px;
  border-bottom: 1px solid #757575;
}

#menuTop ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#menuTop ul li {
  width: 30%;
}

.contBtn {
  width: 100%;
  text-align: center;
  background: #e7340c;
  border-radius: 9999px;
  font-weight: bold;
  line-height: 1.5;
}

.contBtn span {
  display: block;
  font-size: 25px;
}

.contBtn a {
  width: 100%;
  display: block;
  color: #fff;
  padding: 10px 0;
  border-radius: 9999px;
}

.contBtn a:hover {
  text-decoration: none;
  background: #f2421a;
}

.line_Bg {
  background: #06c755;
}
.line_Bg a:hover {
  background: #05d259;
}

.navi_tel {
  font-size: 45px;
  font-family: 'Manrope', sans-serif;
  text-align: center;
  margin-top: -20px;
}

.navi_tel i {
  font-size: 35px;
  margin-right: 5px;
  vertical-align: 4px;
}

.navi_tel span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  margin-top: -15px;
}

#menu .boxMainList {
  width: 85%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border: 0px solid #000;
}

#menu.panelactive .boxMainList {
  border: 0px solid #eee;
}

/*-- リストのレイアウト設定 --*/
#menu .itemTit {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
  pointer-events: none;
}

#menu .itemTit_link {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
}

#menu .innerList {
  margin-top: 10px;
  font-weight: normal;
}

#menu .itemInner:nth-child(n + 2) {
  margin-top: 26px;
}

#menu .linkItem {
  font-size: 14px;
  text-decoration: none;
}

.menu_pc_none{display: none;}
.menu_sp_none{display: block;}

/* ---- pc 1400px ---------- */
@media only screen and (max-width: 1400px) {
  #menuTop {
    width: 85%;
    padding: 120px 0 50px;
  }

  #menuTop ul li {
    width: 31%;
  }

  .contBtn {
    font-size: 16px;
  }
  .navi_tel {
    font-size: 36px;
    margin-top: -15px;
  }
  .navi_tel i {
    font-size: 26px;
  }
  .navi_tel span {
    font-size: 16px;
    margin-top: -10px;
  }
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1200px) {
  #menuTop {
    width: 85%;
    padding: 120px 0 20px;
    border-bottom: 0px solid #757575;
  }

  #menuTop ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  #menuTop ul li {
    width: 48%;
  }

  #menuTop ul li:last-child {
    width: 100%;
    margin: auto;
  }

  .navi_tel {
    text-align: center;
    margin: 30px 0 15px 0;
  }

  #menu .boxMainList {
    width: 85%;
    display: block;
    padding: 10px 0;
    margin-bottom: 100px;
  }

  /*-- リストのレイアウト設定 --*/
  #menu .itemTit {
    font-size: 20px;
    position: relative;
    pointer-events: auto;
    padding: 12px 0 12px 5px;
  }

  #menu .itemTit::before,
  #menu .itemTit::after {
    content: '';
    width: 20px;
    height: 2px;
    background-color: #757575;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
  }

  #menu .itemTit::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s;
  }

  #menu .itemTit.show::before {
    opacity: 0;
  }

  #menu .itemTit.show::after {
    transform: translateY(-50%) rotate(180deg);
  }

  #menu .itemTit_link {
    font-size: 20px;
    position: relative;
    pointer-events: auto;
    padding: 12px 0 12px 5px;
  }

  #menu .itemMain {
    border-top: 1px solid #757575;
  }
  #menu .itemMain:last-child {
    border-bottom: 1px solid #757575;
  }

  #menu .innerList {
    margin-top: 0;
    display: none;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  #menu .linkItem {
    font-size: 18px;
  }

  .menu_pc_none{display: block;}
  .menu_sp_none{display: none;}
}

/* ---- sp 767 ------------- */
@media only screen and (max-width: 767px) {
  #menuTop ul {
    flex-direction: column;
  }

  #menuTop ul li {
    width: 100%;
    margin-bottom: 30px;
  }

  .navi_tel {
    font-size: 45px;
    margin-top: 0px;
  }

  .navi_tel i {
    font-size: 35px;
  }
}

/* ---- sp 480 ------------- */
@media only screen and (max-width: 480px) {
  .contBtn {
    font-size: 14px;
  }
  .navi_tel {
    font-size: 35px;
  }
  .navi_tel i {
    font-size: 25px;
  }
}

/*-------------------------------------------------------------------
　footer contact
-------------------------------------------------------------------*/
#ft_tel_wrap {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0px solid #000;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #000000;
  line-height: 1.8;
  -webkit-text-size-adjust: none;
}

.ft_tel_wrap_outer {
  background: #fff;
  padding: 60px 0;
}

#ftTle_Box {
  width: 450px;
  text-align: center;
}

#ftTle_Box p {
  margin: 0;
}

#ft_tel {
  font-family: 'Manrope', sans-serif;
  font-size: 55px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

#ft_tel i {
  font-size: 40px;
  margin-right: 15px;
}

#ft_top {
  width: 500px;
  font-size: 25px;
}

#ft_top i {
  font-size: 40px;
  margin: 0 15px 0 0;
}

#ft_top a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 0;
  border-radius: 10px;
  border: 2px solid #000;
  box-sizing: border-box;
}

#ft_top a:hover {
  color: #fff;
  background: #e5340b;
  border: 2px solid #fff;
  transition: 0.5s;
}

/* ---- pc 1300px ----------
@media only screen and (max-width: 1300px) {
  #ft_cont {
    width: 90%;
  }
}
 */
/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  /* #ft_cont {
    flex-direction: column;
  }

  #local {
    width: 100%;
    margin-bottom: 120px;
  }
  #visit {
    width: 100%;
  }

  #local h3,
  #visit h3 {
    font-size: 25px;
    padding-bottom: 10px;
    border-bottom: 5px solid #000;
    margin: 0 0 40px;
  }

  #local h3 span,
  #visit h3 span {
    font-size: 22px;
    margin: 5px 0 -10px;
  } */

  #ft_tel_wrap {
    width: 90%;
    margin: 60px auto;
    flex-direction: column;
  }

  #ftTle_Box {
    margin-bottom: 30px;
  }
}

/* ---- sp 767 ------------- */
@media only screen and (max-width: 767px) {
  /* #footer_wrap {
    padding: 80px 0 110px;
  }

  .ft_diagonal {
    font-size: 25px;
    margin-bottom: 0;
  }

  .ft_diagonal::before,
  .ft_diagonal::after {
    content: "";
    width: 4px;
    height: 25px;
    background-color: #e5340b;
  }

  .ft_diagonal::before {
    margin-right: 20px;
  }
  .ft_diagonal::after {
    margin-left: 20px;
  }

  .ft_mainTit {
    font-size: 30px;
    margin: -3px 0 40px 0;
  }

  #ft_cont {
    width: 85%;
  }
  #local {
    margin-bottom: 80px;
  }

  #local h3 span,
  #visit h3 span {
    font-size: 20px;
    margin: 5px 0 -10px;
  }

  .ft_caption {
    width: 70%;
    bottom: -30px;
    left: 15%;
    padding: 15px 5px 15px;
    font-size: 20px;
  } */

  #ft_tel_wrap {
    width: 85%;
    margin: 60px auto;
  }

  #ftTle_Box {
    width: 100%;
    margin-bottom: 30px;
  }

  #ft_tel {
    font-size: 45px;
  }

  #ft_tel i {
    font-size: 30px;
    margin-right: 15px;
  }

  #ft_top {
    width: 85%;
    font-size: 22px;
    margin: 0 auto;
  }
}

/* ---- sp 480 ------------- */
@media only screen and (max-width: 480px) {
  /* #footer_wrap {
    padding: 50px 0 80px;
  }

  .ft_diagonal {
    font-size: 25px;
    margin-bottom: 5px;
  }

  #local h3,
  #visit h3 {
    font-size: 25px;
    padding-bottom: 10px;
    margin: 0 0 40px;
    line-height: 1.2;
  }

  #local h3 span,
  #visit h3 span {
    margin: 5px 0 5px;
  }

  .ft_caption {
    width: 80%;
    bottom: -30px;
    left: 10%;
    padding: 10px 5px 10px;
    font-size: 18px;
  } */

  #ft_tel_wrap {
    width: 85%;
    margin: 50px auto;
  }

  #ft_tel {
    font-size: 35px;
  }

  #ft_tel i {
    font-size: 28px;
    margin-right: 10px;
  }

  #ft_top {
    width: 100%;
    font-size: 20px;
    margin: 0 auto;
  }

  #ft_top i {
    font-size: 28px;
    margin: 0 10px 0 0;
  }
}

/*-------------------------------------------------------------------
　footer menu
-------------------------------------------------------------------*/
#ft_main_wrap {
  width: 100%;
  background: #242424;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-text-size-adjust: none;
}

#ft_main_wrap p {
  margin: 0;
}

#ft_main_wrap img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
}

#ft_main_wrap a {
  text-decoration: none;
  color: #fff;
}

#ft_main_wrap a:hover {
  text-decoration: underline;
}

#ft_mainIn {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  color: #fff;
}

#ft_snsBox {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
}

#ftLogo {
  margin-right: 30px;
}

#ftLogo img {
  width: 170px;
  margin-bottom: 10px;
}

#ft_description {
  display: flex;
  align-items: center;
}

p#homeLink {
  font-size: 18px;
  font-weight: bold;
  margin: 0 20px 0 0;
}

#ft_tx {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
}

#sns_icon ul {
  display: flex;
  padding: 0;
  margin: 0;
}

#sns_icon ul li {
  width: 50px;
  margin-right: 15px;
}

#sns_icon ul li:last-child {
  margin-right: 0;
}

#ft_menu {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  border: 0px solid #fff;
}

.ft_List {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  /*pointer-events: none;*/
}

.ft_List ul {
  margin: 7px 0 0 0;
  padding: 0;
}

.ft_List ul li {
  font-size: 13px;
  font-weight: normal;
}

#copy {
  font-size: 13px;
  color: #fff;
  font-weight: normal;
  text-align: center;
  background: #000;
  padding: 20px 0;
  line-height: 1.5;
  margin: 0;
  font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  -webkit-text-size-adjust: none;
}

/* ---- pc 1300px ---------- */
@media only screen and (max-width: 1300px) {
  #ft_mainIn {
    width: 90%;
    padding: 80px 0;
  }
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
  #ft_snsBox {
    flex-direction: column;
    padding-bottom: 0;
    border-bottom: 0px solid #707070;
  }

  #ftLogo {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  #ftLogo img {
    width: 200px;
    margin-bottom: 10px;
  }

  #ft_description {
    flex-direction: column;
    margin-bottom: 20px;
  }

  #homeLink {
    display: none;
  }
  #ft_menu {
    display: none;
  }
}

/* ---- sp 767 ------------- */
@media only screen and (max-width: 767px) {
  #ft_mainIn {
    width: 85%;
    padding: 80px 0;
  }

  #copy {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* ---- sp 480 ------------- */
@media only screen and (max-width: 480px) {
  #ft_mainIn {
    width: 85%;
    padding: 50px 0;
  }
}

/*-------------------------------------------------------------------
　floating banner
-------------------------------------------------------------------*/
#floating_Ba {
  position: fixed;
  z-index: 100;
  top: 230px;
  right: 0;
}

#floating_Ba ul,
#floating_Ba li {
  margin: 0;
  padding: 0;
}

#floating_Ba img {
  width: 100%;
  vertical-align: top;
}

#floating_Ba ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}

#floating_Ba ul li {
  width: 80px;
  margin-bottom: 10px;
}

#floating_Ba ul li a:hover {
  opacity: 0.8;
}

#sp_floating_Ba {
  display: none;
}

/* ---- pc 1400px ---------- */
@media only screen and (max-width: 1400px) {
  #floating_Ba ul li {
    width: 60px;
    margin-bottom: 10px;
  }
}

/* ---- tablet ------------- */
@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 767px) {
  #floating_Ba {
    display: none;
  }

  #sp_floating_Ba {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 300;
    background: #eee;
  }

  #sp_floating_Ba ul {
    width: 100%;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #sp_floating_Ba li {
    width: calc(100% / 3);
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  #sp_floating_Ba li img {
    width: 100%;
    display: block;
  }
}

/*-------------------------------------------------------------------
　tel link
-------------------------------------------------------------------*/
[href^='tel'] {
  text-decoration: none;
  color: #000;
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  [href^='tel'] {
    pointer-events: auto;
  }
}
