@charset "UTF-8";
/*===========================================
メディアクエリ
===========================================*/
/* ブレイクポイントを指定 */
/*===========================================
ヘッダー
===========================================*/
header {
  width: 100%;
  padding: 27px 0 0;
  z-index: 99;
  /* ハンバーガーメニュー */
}
@media screen and (max-width: 600px) {
  header {
    padding: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
  }
}
header .header_inner {
  max-width: 1365px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 960px) {
  header .header_inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  header .header_inner {
    display: block;
    margin: 0;
  }
}
header .toggle-menu {
  display: none;
  width: 60px;
  height: 60px;
  background-color: var(--pink);
  position: relative;
  z-index: 100;
  border: 1px solid var(--pink);
  transition: 0.3s;
  border-radius: 0 !important;
  position: relative;
}
@media screen and (max-width: 600px) {
  header .toggle-menu {
    display: block;
    width: 20%;
    background-color: #398EE0;
  }
}
header .toggle-menu::before {
  content: "MENU";
  position: absolute;
  font-size: 14px;
  font-weight: var(--fw_bold);
  color: #fff;
  bottom: 0;
  left: 45%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
header .toggle-menu .toggle-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-indent: -9999px;
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  header .toggle-menu .toggle-line {
    width: 9vw;
    height: 3px;
    left: -10px;
    top: -15px;
  }
}
header .toggle-menu .toggle-line::before,
header .toggle-menu .toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 9vw;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}
header .toggle-menu .toggle-line::before {
  top: -10px;
  animation: menu-barTop 0.6s forwards;
}
header .toggle-menu .toggle-line::after {
  top: 10px;
  animation: menu-barBottom 0.6s forwards;
}
@media screen and (min-width: 601px) {
  header .toggle-menu:hover {
    background-color: yellow;
  }
}
@media screen and (min-width: 601px) {
  header .toggle-menu:hover .toggle-line,
  header .toggle-menu:hover .toggle-line::before,
  header .toggle-menu:hover .toggle-line::after {
    background-color: var(--pink);
  }
}
header .global_nav .pc_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width: 1300px) {
  header .global_nav .pc_menu {
    gap: 30px;
  }
}
@media screen and (max-width: 960px) {
  header .global_nav .pc_menu {
    display: none;
  }
}
header .global_nav .pc_menu li {
  border-right: 1px solid var(--text_color);
  position: relative;
}
@media screen and (max-width: 600px) {
  header .global_nav .pc_menu li {
    border-right: unset;
    text-align: center;
  }
}
header .global_nav .pc_menu li a {
  color: var(--text_color);
  font-weight: var(--fw_med);
  font-size: 18px;
}
@media screen and (max-width: 1300px) {
  header .global_nav .pc_menu li a {
    font-size: 17px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 600px) {
  header .global_nav .pc_menu li a {
    font-size: 15px;
  }
}
header .global_nav .pc_menu li::after {
  content: "";
  display: block;
  transform: rotate(40deg);
  width: 1px;
  height: 24px;
  background-color: #000;
  position: absolute;
  top: 2px;
  right: -30px;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  header .global_nav .pc_menu li::after {
    right: -15px;
  }
}
header .global_nav .pc_menu li:last-child::after {
  display: none;
}
header .logo_content {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  header .logo_content {
    z-index: 101;
    justify-content: flex-start;
  }
}
header .logo_content .logo_b {
  width: 237px;
}
@media screen and (max-width: 1300px) {
  header .logo_content .logo_b {
    width: 220px;
  }
}
@media screen and (max-width: 960px) {
  header .logo_content .logo_b {
    display: none;
  }
}
header .transrate {
  width: 100%;
  display: flex;
  justify-content: right;
  padding-top: 3px;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  header .transrate {
    justify-content: left;
    padding-top: 1rem;
  }
}
header .transrate p {
  font-family: "Zen Maru Gothic";
  font-weight: 600;
  line-height: 1;
  margin-right: 3%;
  margin-bottom: 0;
  color: #398EE0;
}
@media screen and (max-width: 600px) {
  header .transrate p {
    color: #fff;
  }
}
@media screen and (max-width: 600px) and (max-width: 600px) {
  header .transrate p {
    font-size: 18px;
    line-height: 1.6;
  }
}
header .transrate img {
  width: 33px;
  margin-left: 1rem;
}
@media screen and (max-width: 600px) {
  header .transrate img {
    width: 42px;
  }
}
header .link_area {
  max-width: 380px;
  display: flex;
  height: 30px;
  justify-content: space-between;
  margin-top: -4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 1300px) {
  header .link_area {
    gap: 10px;
  }
}
@media screen and (max-width: 960px) {
  header .link_area {
    display: none;
  }
}
header .link_area .medical_link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 150px;
  border: 2px solid #398EE0;
  border-radius: 10px;
  background-color: #fff;
  padding: 5px 17px;
  font-size: 17px;
  font-weight: var(--fw_med);
}
header .link_area .medical_link::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_teeth.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 22px;
}
header .link_area .online_link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: 200px;
  background-color: #398EE0;
  color: #fff;
  padding: 5px 17px;
  font-size: 18px;
  font-weight: var(--fw_bold);
  border-radius: 18px;
}
header .link_area .online_link::before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_calender.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 21px;
  height: 23px;
  position: relative;
  top: 1px;
}
header .link_area_sp {
  display: flex;
  width: 80%;
}
@media screen and (min-width: 601px) {
  header .link_area_sp {
    display: none;
  }
}
header .link_area_sp .tel_link,
header .link_area_sp .medical_tel_link {
  color: #fff;
  display: block;
  width: 50%;
  height: 60px;
  font-size: 18px;
  font-weight: var(--fw_bold);
  padding: 12px 0 15px 3vw;
  display: flex;
  align-items: center;
  gap: 2vw;
}
header .link_area_sp .tel_link img,
header .link_area_sp .medical_tel_link img {
  width: 30px;
  height: 30px;
}
header .link_area_sp .tel_link {
  background-color: #6DD934;
}
header .link_area_sp .medical_tel_link {
  background-color: #F8B600;
}
header .link_area_spen {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 601px) {
  header .link_area_spen {
    display: none;
  }
}
header .link_area_spen .tel_link {
  color: #fff;
  display: block;
  height: 60px;
  font-size: 18px;
  font-weight: var(--fw_bold);
  padding: 12px 0 15px 3vw;
}
header .link_area_spen .tel_link img {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}
header .link_area_spen .tel_link {
  background-color: #6DD934;
}
header .header_nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  -webkit-box-orient: vertical;
  width: 100vw;
  background-color: #398EE0;
  visibility: hidden;
  transition: 0.3s ease-out;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  header .header_nav {
    padding: 0;
  }
}
header .hmenu_img_wrap img {
  width: 34.72vw;
  height: 100vh;
}
header .hmenu_wrap {
  flex: 1;
  padding: 60px 10px 60px;
  z-index: 100;
  height: 100vh;
}
header .hmenu_wrap .hmenu_logo {
  display: block;
  width: 65%;
  margin: 0 auto 2rem;
}
header .hmenu_wrap .hmenu_link {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  header .hmenu_wrap .hmenu_link {
    flex-flow: column;
    margin-top: 40px;
    gap: 20px;
  }
}
header .hmenu_wrap .hmenu_link a {
  position: relative;
  display: flex;
  align-items: center;
  width: 160px;
  justify-content: center;
  gap: 16px;
  font-weight: var(--fw_bold);
  line-height: 1.43;
  padding: 8px 0 9px;
  border: 1px solid var(--text_color);
  border-radius: 20px;
}
@media screen and (max-width: 600px) {
  header .hmenu_wrap .hmenu_link a {
    margin: 0 auto;
  }
}
header .hmenu_wrap .hmenu_link a::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
header .hmenu_wrap .hmenu_link .contact_link::before {
  background-image: url(../images/ico_mail.svg);
  width: 19px;
  height: 19px;
  left: 16px;
  top: 54%;
  transform: translateY(-54%);
  -webkit-transform: translateY(-54%);
  -ms-transform: translateY(-54%);
}
header .hmenu_wrap .hmenu_link .online_s_link {
  padding-left: 4px;
  font-size: 14px;
}
header .hmenu_wrap .hmenu_link .online_s_link::before {
  background-image: url(../images/ico_cart.svg);
  width: 20px;
  height: 21px;
  left: 13px;
  top: 58%;
  transform: translateY(-58%);
  -webkit-transform: translateY(-58%);
  -ms-transform: translateY(-58%);
}
header .hmenu_wrap .link_wrap {
  margin-top: 167px;
  padding: 20px 20px 0 10px;
  border-top: 1px solid var(--text_color);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  header .hmenu_wrap .link_wrap {
    margin-top: 80px;
    padding: 20px 0 0;
  }
}
header .hmenu_wrap .link_wrap .sns_link_wrap {
  display: flex;
  gap: 21px;
  align-items: center;
}
@media screen and (max-width: 600px) {
  header .hmenu_wrap .link_wrap .sns_link_wrap {
    gap: 15px;
  }
}
header .hmenu_wrap .link_wrap .privacy_link {
  font-size: 14px;
  font-weight: var(--fw_bold);
  position: relative;
}
header .hmenu_wrap .link_wrap .privacy_link::before {
  content: "";
  display: block;
  background-image: url(../images/hmenu_img2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 147px;
  height: 250px;
  position: absolute;
  top: -293px;
  left: -15px;
  transform: rotate(20deg);
  z-index: -1;
}
@media screen and (max-width: 600px) {
  header .hmenu_wrap .link_wrap .privacy_link::before {
    display: none;
  }
}

/* ====== ハンバーガーメニューOPEN時 ====== */
/* 注：SCSSの場合、headerにopenクラス付与時は
下記のように記載しないと開閉しない(ネストはダメ) */
header.open .toggle-menu {
  transition: 0.3s;
}
header.open .toggle-menu .toggle-line {
  height: 0;
  background-color: var(--pink);
  transition: 0.3s;
}
header.open .toggle-menu .toggle-line::before {
  background-color: #fff;
  animation: active-menu-barTop 0.6s forwards;
  transform: rotate(-45deg);
  top: 0;
  transition: 0.3s;
}
header.open .toggle-menu .toggle-line::after {
  background-color: #fff;
  animation: active-menu-barBottom 0.6s forwards;
  transform: rotate(45deg);
  top: 0;
  transition: 0.3s;
}
@media screen and (min-width: 601px) {
  header.open .toggle-menu:hover {
    background-color: #fff;
    border: 1px solid var(--pink);
  }
}
@media screen and (min-width: 601px) {
  header.open .toggle-menu:hover .toggle-line,
  header.open .toggle-menu:hover .toggle-line::before,
  header.open .toggle-menu:hover .toggle-line::after {
    background-color: var(--pink);
  }
}
header.open .header_nav {
  overflow: auto;
  opacity: 1;
  z-index: 10;
  visibility: unset;
}
header.open .header_nav .fmenu_item {
  font-size: 16px;
  margin-right: 1rem;
  border-bottom: dotted #fff 2px;
}
header.open .header_nav .fmenu_item a {
  color: #fff;
  display: block;
  padding: 0.5rem 1rem 0.5rem 2rem;
  background-image: url(../images/allow_w.svg);
  background-repeat: no-repeat;
  background-position: 1% center;
}/*# sourceMappingURL=header2.css.map */