@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@700&display=swap");

ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1;
  font-weight: 500;
}

p {
  font-weight: 500;
}

img {
  max-width: 100%;
}
main {
  margin-top: 80px;
}

.ly_inner {
  max-width: 90%;
  margin: 0 auto;
}
.hp_flex {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}
.hp_btnClinic {
  background-color: #008969;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 4px 14px !important;
}
.hp_btnContact {
  background-color: #ff3f3f !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 4px 14px !important;
}
.hp_mr5 {
  margin-right: 5px;
}

/* 文章 */
.bl_txt {
  line-height: 1.6;
  margin-top: 20px;
}

/* ボタン */
.bl_btn_wrap {
  border-radius: 50px;
  max-width: 300px;
  margin: auto;
  font-size: 32px;
  font-weight: bold;
  padding: 20px 45px;
}
.bl_btn_txt img {
  margin-right: 10px;
}
.hp_txtGreen {
  color: #008969 !important;
}
.hp_txtWhite {
  color: #fff !important;
}
.hp_bgGreen {
  background-color: #008969 !important;
}
.hp_bgWhite {
  background-color: #fff !important;
}

/* トップページ見出し */
.bl_h2headding_top {
  font-size: 32px !important;
  font-weight: bold !important;
  text-align: center !important;
}
.bl_h2headding_top::before {
  content: "";
  color: #008969 !important;
  font-size: 16px !important;
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 6px !important;
}

/* 下層ページ見出し */
.bl_h2headding_sub {
  position: relative !important;
  font-size: 32px !important;
  font-weight: bold !important;
  text-align: center !important;
  text-shadow: 0 0 2px white !important;
}
.bl_h2headding_sub::before {
  content:"";
  position: absolute !important;
  background-color: #FFE33F !important;
  width: 100px !important;
  max-width: 100%;
  height: 100px !important;
  border-radius: 50% !important;
  top: 50% !important;
  /* border: dashed 1px white; */
  -webkit-transform: translate(-45%,-70%) !important;
  transform: translate(-45%,-70%) !important;
  z-index: -1;
}
/* ヘッダー */
header.bl_header {
  position: fixed;
  width: 100%;
  height: 80px;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 0.3s;
}
header.scroll {
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.ly_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 85px;
  height: 100%;
  position: relative;
  transition: 0.3s;
  max-width: 1400px;
  margin: 0 auto;
}
header.scroll .ly_header_inner {
  padding: 15px 100px;
}
ul.bl_nav_items {
  display: flex;
  align-items: center;
}
.bl_nav_item {
  margin-right: 20px;
}
.bl_nav_item:last-child {
  margin-right: 0px;
}
.bl_hamburger_nav,
.bl_headder_btnWrap,
.bl_header_hamburger,
.bl_mail_btn {
  display: none;
}

/* フッター */
.bl_footer {
  height: 70px;
  background-color: #008969;
  color: #fff;
}
.ly_footer_inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 100px;
}
.bl_copyright {
  font-size: 12px;
}

.hp_pc {
  display: block;
}
.hp_sp {
  display: none;
}

@media (max-width: 1024px) {
  main {
    margin-top: 60px;
  }
  /* ヘッダー */
  .bl_nav {
    display: none;
  }
  .bl_logo img {
    max-width: 100%;
  }
  header.bl_header {
    position: fixed;
    width: 100%;
    height: 60px;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: 0.3s;
  }
  header.scroll {
    background-color: #fff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  .ly_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 5px;
    height: 100%;
    position: relative;
    transition: 0.3s;
  }
  header.scroll .ly_header_inner {
    padding: 0 0 0 20px;
  }

  /* ハンバーガーメニュー */
  .bl_hamburger_nav,
  .bl_headder_btnWrap,
  .bl_header_hamburger,
  .bl_mail_btn {
    display: block;
    border-style: none;
  }
  .bl_headder_btnWrap {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .bl_hamburger_nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease 0.4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
  }
  .bl_header_hamburger,
  .bl_mail_btn {
    width: 60px;
    height: 100%;
  }

  .bl_hamburger {
    background-color: #008969;
    z-index: 9999;
  }
  .bl_hamburger_nav.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  /* ハンバーガーメニューの線 */
  .bl_hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
  }
  .bl_hamburger span:nth-child(1) {
    background-color: #fff;
    top: 0;
    width: 32px;
    margin: 0 auto;
  }
  .bl_hamburger span:nth-child(2) {
    background-color: #fff;
    width: 32px;
    margin: 8px auto;
  }
  .bl_hamburger span:nth-child(3) {
    background-color: #fff;
    top: 0;
    width: 32px;
    margin: 0 auto;
  }
  /* ハンバーガーメニュークリック後のスタイル */
  .bl_header_nav.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .bl_hamburger.active span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .bl_hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .bl_hamburger.active span:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .bl_hamburger_nav_items {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70%;
  }
  /* ナビのリンク */
  .bl_hamburger_nav_item a {
    color: #333;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
  }
  .bl_hamburger_nav_item:nth-child(4) a,
  .bl_hamburger_nav_item:last-child a {
    width: 200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .bl_hamburger_nav_item:last-child a {
    margin-bottom: 0;
  }

  /*  フッター */
  .bl_footer {
    height: auto;
  }
  .ly_footer_inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 5px 0;
  }
  .bl_footer_nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .bl_footer_nav .bl_nav_item {
    margin: 0;
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid;
  }
  .bl_copyright {
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
  }
  main {
    margin-top: 60px;
  }
  /* ボタン */
.bl_btn_wrap {
  border-radius: 50px;
  max-width: 250px;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 30px;
}
.bl_btn_wrap img {
  width: 35px;
  height: 35px;
  max-width: 100%;
}
.bl_btn_txt img {
  margin-right: 10px;
}

/* 下層ページ見出し */
.bl_h2headding_sub::before {

  width: 80px !important;
  height: 80px !important;
  top: 65% !important;
  -webkit-transform: translate(-25%,-70%) !important;
    transform: translate(-25%,-70%) !important;
}

.hp_pc {
  display: none;
}
.hp_sp {
  display: block;
}
}
