@charset "UTF-8";
/* ベース */
:root {
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-main: #8a725b;
  --color-main-rgb: 138, 114, 91;
  --color-main_sub: #c0ae97;
  --color-main_sub-rgb: 192, 174, 151;
  --color-main_high: #c69c6d;
  --color-main_high-rgb: 198, 156, 109;
  --color-gold: #c1a776;
  --color-gold-rgb: 193, 167, 118;
  --color-boder: #eee9e3;
  --color-boder-rgb: 238, 233, 227;
  --color-bg: #eee9e3;
  --color-bg-rgb: 238, 233, 227;
  --color-lady: #a0907f;
  --color-lady-rgb: 160, 144, 127;
  --color-skill: #2a4073;
  --color-skill-rgb: 42, 64, 115;
  --color-green: #39b54a;
  --color-green-rgb: 57, 181, 74;
  --color-black-0: #000;
  --color-black-0-rgb: 0, 0, 0;
  --color-btn: #333333;
  --color-btn-rgb: 51, 51, 51;
  --color-blue-h: #8ff1ff;
  --color-blue-h-rgb: 143, 241, 255;
  --color-blue-d: #2e3192;
  --color-blue-d-rgb: 46, 49, 146;
  --color-red: #ff6f61;
  --color-red-rgb: 255, 111, 97;
  --color-gray: #f5f8fa;
  --color-gray-rgb: 245, 248, 250;
  --color-gray-d: #666666;
  --color-gray-d-rgb: 102, 102, 102;
  --font-base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  --font-min: "Noto Serif JP", "游明朝", "YuMincho", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "BIZUDMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "seri";
  --font-jost: "Futura", "futura", "Jost", sans-serif;
  --font-marc: "Marcellus", serif;
  --font-weight-light: 300;
  --font-weight-reg: 400;
  --font-weight-mid: 500;
  --font-weight-semi: 600;
  --font-weight-bold: 700;
  --font-spacing-0: 0em;
  --font-spacing-03: 0.03em;
  --font-spacing-04: 0.04em;
  --font-spacing-05: 0.05em;
  --font-spacing-06: 0.06em;
  --font-spacing-075: 0.075em;
  --font-spacing-08: 0.08em;
  --font-spacing-1: 0.1em;
  --font-spacing-2: 0.2em;
  --space-margin: 120px;
  --space-margin_sub: 60px;
  --space-sec: 80px;
  --space-padding: 40px;
  --space-padding_sub: 20px;
}
@media only screen and (max-width: 860px) {
  :root {
    --space-margin: 16vw;
    --space-margin_sub: 8vw;
    --space-padding: 4vw;
    --space-padding_sub: 2vw;
    --space-sec: 17vw;
  }
}

.pc_none,
.sp {
  display: none;
}
@media only screen and (max-width: 860px) {
  .pc_none,
  .sp {
    display: block;
  }
}

@media only screen and (max-width: 860px) {
  .sp_none,
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 860px) {
  .pc_contents {
    display: none;
  }
}

.sp_contents {
  display: none;
}
@media only screen and (max-width: 860px) {
  .sp_contents {
    display: block;
  }
}

.no_link {
  display: none;
}

:root {
  font-size: 62.5%;
}
@media only screen and (max-width: 860px) {
  :root {
    font-size: 62.5%;
  }
}

* {
  box-sizing: border-box;
}

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

svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 861px) {
  a:hover {
    opacity: 0.6;
  }
}

@media only screen and (min-width: 861px) {
  button:hover {
    opacity: 0.6;
  }
}

ul,
ol {
  list-style: none;
}

dt {
  font-weight: normal;
}

body {
  position: relative;
  font-feature-settings: "palt" 1;
  font-kerning: none;
  font-family: var(--font-base);
  font-weight: var(--font-weight-reg);
  color: var(--color-black);
  margin-left: auto;
  margin-right: auto;
  background-color: var(--color-white);
  letter-spacing: 0.06em;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 860px) {
  body {
    max-width: none;
    min-width: auto;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 860px) {
  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }
}

.el_preload {
  display: none;
}

/* layout */
html {
  margin-top: 0 !important;
}

#wpadminbar {
  top: auto !important;
  bottom: 0;
  position: sticky !important;
}

.ly_inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 860px) {
  .ly_inner {
    padding-left: 4%;
    padding-right: 4%;
  }
}

.ly_bg {
  background-color: var(--color-bg);
}

.ly_sec {
  padding: var(--space-sec) 0;
}

.ly_head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 40px 20px;
}
@media only screen and (max-width: 860px) {
  .ly_head {
    padding: 8% 0 0;
    z-index: 200;
  }
}

.bl_head_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.bl_head_logo {
  width: 286px;
}
@media only screen and (max-width: 860px) {
  .bl_head_logo {
    width: 40%;
  }
}
.bl_head_nav {
  font-weight: var(--font-weight-light);
  font-size: 1.2rem;
  letter-spacing: 0.32em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  column-gap: 3em;
}
@media only screen and (max-width: 860px) {
  .bl_head_nav {
    display: none;
  }
}
.bl_head_nav_link {
  padding-right: 1em;
  background-image: url(../img/common/arrow_r.svg);
  background-repeat: no-repeat;
  background-size: 0.3em;
  background-position: right center;
}

.bl_headNav {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 250;
}
@media only screen and (max-width: 860px) {
  .bl_headNav {
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.bl_headNav_item {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: var(--font-weight-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.5em;
  padding: 1em 2em;
  letter-spacing: 0.22em;
  filter: drop-shadow(-5px 5px 0 rgba(var(--color-black-rgb), 0.2));
}
@media only screen and (max-width: 860px) {
  .bl_headNav_item {
    filter: none;
    font-weight: var(--font-weight-mid);
    padding: 0.5em 0;
    font-weight: var(--font-weight-mid);
  }
}
.bl_headNav_item .el_svg {
  fill: var(--color-white);
  width: 2.5em;
}
.bl_headNav_item__web {
  background-color: var(--color-black);
}
@media only screen and (max-width: 860px) {
  .bl_headNav_item__web {
    border-radius: 0 0 0 10px;
  }
}
.bl_headNav_item__line {
  background-color: var(--color-green);
  border-radius: 0 0 0 20px;
}
@media only screen and (max-width: 860px) {
  .bl_headNav_item__line {
    border-radius: 0;
  }
}
.bl_headNav_item__menuBtn {
  display: none;
}
@media only screen and (max-width: 860px) {
  .bl_headNav_item__menuBtn {
    font-weight: var(--font-weight-light);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    row-gap: 10px;
  }
}
.bl_headNav_icon {
  position: relative;
}
@media only screen and (max-width: 860px) {
  .bl_headNav_icon {
    width: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl_menuBtn {
  background-color: var(--color-black);
}
.bl_menuBtn_box {
  width: 28px;
  height: 20px;
  position: relative;
  display: block;
}
.bl_menuBtn_box span {
  position: absolute;
  height: 1px;
  background-color: var(--color-white);
  left: 0;
  right: 0;
  transition: all ease 0.4s;
}
.bl_menuBtn_box span:nth-of-type(1) {
  top: 0;
}
.bl_menuBtn_box span:nth-of-type(2) {
  bottom: 50%;
  transform: translateY(50%);
}
.bl_menuBtn_box span:nth-of-type(3) {
  bottom: 0;
}

.bl_gnav {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #1a1a1a;
  padding-top: 26vw;
  color: var(--color-white);
}
.bl_gnav_list {
  font-size: 1.3rem;
  border-bottom: 1px solid var(--color-white);
}
.bl_gnav_list_item {
  border-top: 1px solid var(--color-white);
}
.bl_gnav_list_link {
  display: grid;
  grid-template-columns: 13em 1fr;
  position: relative;
  padding: 1.5em 0;
  letter-spacing: 0.17em;
}
.bl_gnav_list_link strong,
.bl_gnav_list_link i {
  color: var(--color-gold);
  font-style: normal;
  letter-spacing: 0.36em;
  font-family: "Futura", "futura", "Jost", sans-serif;
  font-weight: 500;
  font-family: var(--font-jost);
  font-weight: var(--font-weight-mid);
}
.bl_gnav_list_link strong {
  letter-spacing: 0.36em;
}
.bl_gnav_list_link span {
  font-size: 1.5rem;
  letter-spacing: 0.3em;
}
.bl_gnav_list_arrow {
  position: absolute;
  fill: var(--color-gold);
  position: absolute;
  width: 0.5em;
  right: 0;
  bottom: 50%;
  transform: translateY(50%);
}
.bl_gnav_btns {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8vw;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2vw;
  font-size: 1.4rem;
}

.el_headContact {
  font-weight: var(--font-weight-reg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.25em;
  text-align: center;
  position: relative;
  border-radius: 120em;
  border: 1px solid var(--color-white);
  padding: 0;
  min-height: 5em;
  font-size: 1.5rem;
}
.el_headContact::after {
  content: "";
  display: block;
  position: absolute;
  right: 2em;
  bottom: 50%;
  transform: translateY(50%);
  background-image: url(../img/common/arrow_contact.svg);
  height: 0.55em;
  width: 1em;
}
.el_headContact i {
  font-style: normal;
  font-size: 1.35rem;
}
.el_headContact strong {
  font-weight: var(--font-weight-reg);
}
.el_headContact_tel {
  font-size: 1.8rem;
}
.el_headContact_time {
  font-size: 1.3rem;
}
.el_headContact_web {
  font-size: 2rem;
}
.el_headContact_web span {
  font-size: 1.07em;
}
.el_headContact__web {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.js_logo {
  transition: all ease 0.4s;
}
.js_logo.is_active {
  fill: var(--color-white);
}

.js_headBtn.is_hide {
  visibility: hidden;
}

.js_menuBtn.is_open .bl_menuBtn_box span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.js_menuBtn.is_open .bl_menuBtn_box span:nth-of-type(2) {
  opacity: 0;
}
.js_menuBtn.is_open .bl_menuBtn_box span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

.ly_foot {
  background-color: var(--color-main);
  padding: 60px 0;
}
@media only screen and (max-width: 860px) {
  .ly_foot {
    padding: var(--space-sec) 0 8vw;
  }
}

.bl_foot {
  color: var(--color-white);
}
.bl_foot_inner {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: center;
  column-gap: 60px;
}
@media only screen and (max-width: 860px) {
  .bl_foot_inner {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 860px) {
  .bl_foot_logo {
    text-align: center;
  }
}
.bl_foot_logo .el_logo {
  width: 90%;
  fill: var(--color-white);
}
@media only screen and (max-width: 1120px) {
  .bl_foot_logo .el_logo {
    width: 100%;
  }
}
@media only screen and (max-width: 860px) {
  .bl_foot_logo .el_logo {
    width: 80%;
  }
}
.bl_foot_nav {
  font-size: 1.3rem;
  letter-spacing: 0.32em;
  font-weight: var(--font-weight-light);
}
@media only screen and (max-width: 860px) {
  .bl_foot_nav {
    margin-top: var(--space-sec);
  }
}
.bl_foot_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 3em;
  row-gap: 1.5em;
}
@media only screen and (max-width: 860px) {
  .bl_foot_list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
    width: 100%;
    border-bottom: 1px solid var(--color-white);
  }
}
.bl_foot_list_arrow {
  fill: var(--color-main_high);
  width: 0.5em;
  margin-left: 0.5em;
  vertical-align: -0.05em;
}
@media only screen and (max-width: 860px) {
  .bl_foot_list_arrow {
    position: absolute;
    right: 1em;
    bottom: 50%;
    transform: translateY(50%);
    margin-left: 0;
  }
}
@media only screen and (max-width: 860px) {
  .bl_foot_list_item {
    border-top: 1px solid var(--color-white);
  }
}
.bl_foot_list_link {
  position: relative;
}
@media only screen and (max-width: 860px) {
  .bl_foot_list_link {
    padding: 1.5em 1em;
    display: block;
  }
}
.bl_foot_copy_pc {
  display: block;
}
@media only screen and (max-width: 860px) {
  .bl_foot_copy_pc {
    display: none;
  }
}
.bl_foot_copy_sp {
  display: none;
}
@media only screen and (max-width: 860px) {
  .bl_foot_copy_sp {
    display: block;
  }
}

.el_copy {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-top: 1em;
  font-weight: var(--font-weight-light);
}
@media only screen and (max-width: 860px) {
  .el_copy {
    text-align: center;
    font-size: 1rem;
    margin-top: 8vw;
  }
}

.bl_news_list_wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 15px;
  row-gap: 15px;
}
@media only screen and (max-width: 860px) {
  .bl_news_list_wrapper {
    column-gap: 0;
  }
}
.bl_news_list_nav {
  display: none;
}
@media only screen and (max-width: 860px) {
  .bl_news_list_nav {
    display: grid;
    grid-template-columns: 50vw 1fr;
    margin-top: 9vw;
    align-items: flex-end;
  }
}
.bl_news_list_scrollbar {
  width: 100%;
  height: 7px;
  background-color: var(--color-white);
  border-radius: 20em;
}
.bl_news_list_scrollbar .swiper-scrollbar-drag {
  background-color: var(--color-black);
}
.bl_news_list_more {
  text-align: right;
}
.bl_news_item {
  background-color: var(--color-white);
  border-radius: 10px;
}
@media only screen and (max-width: 860px) {
  .bl_news_item {
    border-radius: 3px;
    width: 52vw;
  }
}
.bl_news_link {
  display: block;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: var(--font-weight-light);
}
@media only screen and (max-width: 860px) {
  .bl_news_link {
    font-size: 1.3rem;
    padding: 4vw;
  }
}
.bl_news_info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  column-gap: 1em;
  letter-spacing: 0.16em;
  word-break: break-all;
}
.bl_news_time {
  letter-spacing: 0.06em;
}
.bl_news_ttl {
  margin-top: 0.8em;
  padding-top: 0.5em;
  border-top: 1px solid var(--color-boder);
  letter-spacing: 0.16em;
  line-height: 1.8;
}
@media only screen and (max-width: 860px) {
  .bl_news_ttl {
    border-top-width: 2px;
  }
}

.bl_contact {
  background-image: url(../img/common/contact_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 120px;
  text-align: center;
  color: var(--color-white);
  font-weight: var(--font-weight-light);
}
@media only screen and (max-width: 860px) {
  .bl_contact {
    background-image: url(../img/common/contact_bg_sp.png);
    padding-top: 48vw;
    padding-bottom: 32vw;
  }
}
.bl_contact_hd_wrap {
  position: relative;
  display: inline-block;
}
.bl_contact_hd_label {
  position: absolute;
  left: 0;
  top: -25%;
  width: 153px;
  transform: translateX(-100%);
}
@media only screen and (max-width: 860px) {
  .bl_contact_hd_label {
    width: 130px;
    top: -38%;
    left: -2vw;
    transform: translateX(-50%) translateY(-50%);
  }
}
.bl_contact_hd_logo {
  max-width: 291px;
  display: block;
  width: 100%;
}
@media only screen and (max-width: 860px) {
  .bl_contact_hd_logo {
    max-width: 184px;
  }
}
.bl_contact_lv3hd {
  font-size: 4.6rem;
  letter-spacing: 0.16em;
  margin-top: 0.1em;
  font-weight: var(--font-weight-mid);
}
@media only screen and (max-width: 860px) {
  .bl_contact_lv3hd {
    font-size: 3.5rem;
    margin-top: 0.4em;
  }
}
.bl_contact_lv3hd__sm {
  font-size: 3.6rem;
  margin-top: 0.4em;
}
@media only screen and (max-width: 860px) {
  .bl_contact_lv3hd__sm {
    font-size: 3.5rem;
  }
}
.bl_contact_txt {
  letter-spacing: 0.36em;
  font-size: 1.3rem;
  margin-top: 1em;
  line-height: 1.5;
}
@media only screen and (max-width: 860px) {
  .bl_contact_txt {
    margin-top: 0.5em;
  }
}
.bl_contact_btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.45rem;
  column-gap: 1em;
  margin-top: 1.4em;
}
@media only screen and (max-width: 860px) {
  .bl_contact_btns {
    font-size: 1.3rem;
    flex-direction: column-reverse;
    gap: 1em;
    margin-top: 1em;
    padding: 0 6%;
  }
}
@media only screen and (max-width: 860px) {
  .bl_contact_btns_item {
    width: 100%;
  }
}

.bl_doc {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  align-items: flex-start;
  background-image: url(../img/top/doctor_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 860px) {
  .bl_doc {
    display: block;
  }
}
.bl_doc_sp {
  display: none;
}
@media only screen and (max-width: 860px) {
  .bl_doc_sp {
    display: block;
    padding: 4vw 4vw 0vw 9vw;
  }
}
@media only screen and (max-width: 860px) {
  .bl_doc_pc {
    display: none;
  }
}
.bl_doc_box {
  padding: 56px 56px 0;
}
@media only screen and (max-width: 1120px) {
  .bl_doc_box {
    padding: 56px;
  }
}
@media only screen and (max-width: 860px) {
  .bl_doc_box {
    padding: 4vw;
  }
}
@media only screen and (max-width: 860px) {
  .bl_doc_img {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    align-items: flex-end;
  }
  .bl_doc_img > img {
    display: block;
  }
}
.bl_doc_hd {
  font-size: 8rem;
  font-family: var(--font-jost);
  letter-spacing: 0.06em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 0.1em;
  row-gap: 0.1em;
}
@media only screen and (max-width: 860px) {
  .bl_doc_hd {
    font-size: 5rem;
    letter-spacing: 0;
  }
}
.bl_doc_hd small {
  font-size: 0.175em;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "游ゴシック", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-weight: 300;
  font-family: var(--font-base);
  font-weight: var(--font-weight-light);
  margin-left: 0.5em;
  display: inline-block;
}
@media only screen and (max-width: 860px) {
  .bl_doc_hd small {
    font-weight: var(--font-weight-mid);
    font-size: 0.25em;
  }
}
.bl_doc_name {
  font-size: 1.3rem;
  font-weight: var(--font-weight-light);
  line-height: 1.7;
  margin-top: 1em;
}
@media only screen and (max-width: 860px) {
  .bl_doc_name {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 5vw;
  }
  .bl_doc_name strong {
    display: inline-block;
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    font-size: 1.3rem;
    padding: 0.2em 1em 0.1em;
  }
  .bl_doc_name span {
    font-size: 2.7rem;
    letter-spacing: 0.11em;
  }
  .bl_doc_name small {
    font-size: 1.3rem;
    font-family: "Futura", "futura", "Jost", sans-serif;
    font-weight: 500;
    font-family: var(--font-jost);
    font-weight: var(--font-weight-mid);
  }
}
.bl_doc_lv4hd {
  font-size: 2rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  margin: 0.7em 0 1em;
}
@media only screen and (max-width: 860px) {
  .bl_doc_lv4hd {
    margin: 0.7em 0 0.8em;
  }
}
.bl_doc_txt {
  font-size: 1.3rem;
  text-align: justify;
  line-height: 1.7;
  margin-top: 0.5em;
  letter-spacing: 0.08em;
}
.bl_doc_more {
  font-size: 1.6rem;
  margin-top: 1.7em;
}
@media only screen and (max-width: 860px) {
  .bl_doc_more {
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

/* component */
.bl_sechd {
  display: flex;
  align-items: flex-end;
  font-size: 4rem;
  font-family: "Futura", "futura", "Jost", sans-serif;
  font-weight: 400;
  font-family: var(--font-jost);
  font-weight: var(--font-weight-reg);
  color: var(--color-main);
  column-gap: 0.25em;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 860px) {
  .bl_sechd {
    font-size: 3.7rem;
    margin-bottom: 0.5em;
  }
}
.bl_sechd span::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.2) * 0.5em);
}
.bl_sechd span::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-bottom: calc((1 - 1.2) * 0.5em);
}
.bl_sechd small {
  font-size: 0.325em;
  font-weight: var(--font-weight-mid);
  letter-spacing: 0.32em;
}
@media only screen and (max-width: 860px) {
  .bl_sechd small {
    letter-spacing: 0.1em;
    padding-bottom: 0.4em;
  }
}
@media only screen and (max-width: 860px) {
  .bl_sechd_spEnBig {
    font-size: 1.4em;
  }
}

.el_label {
  display: block;
  border-radius: 6px;
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 0.25em;
  text-align: center;
}

.el_headH1 {
  font-size: 1rem;
  position: absolute;
  top: 10px;
  left: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-right: 60px;
}
@media only screen and (max-width: 860px) {
  .el_headH1 {
    padding-left: 1vw;
    top: 1vw;
    padding-right: 0;
  }
}

.el_contactBtn {
  font-weight: var(--font-weight-reg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.25em;
  text-align: center;
  position: relative;
  border-radius: 120em;
  border: 1px solid var(--color-white);
  padding: 0.4em 3em;
  min-width: 16em;
  min-height: 4.3em;
}
@media only screen and (max-width: 860px) {
  .el_contactBtn {
    background-color: var(--color-black);
    padding: 0.4em 3em;
    min-height: 4.7em;
  }
}
.el_contactBtn::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  bottom: 50%;
  transform: translateY(50%);
  background-image: url(../img/common/arrow_contact.svg);
  height: 0.55em;
  width: 1em;
}
.el_contactBtn i {
  font-style: normal;
  font-size: 1.6rem;
}
@media only screen and (max-width: 860px) {
  .el_contactBtn i {
    font-size: 1.35rem;
  }
}
.el_contactBtn strong {
  font-weight: var(--font-weight-reg);
}
.el_contactBtn_tel {
  font-size: 1.85rem;
}
@media only screen and (max-width: 860px) {
  .el_contactBtn_tel {
    font-size: 1.75rem;
  }
}
.el_contactBtn_time {
  font-size: 1.3rem;
}
@media only screen and (max-width: 860px) {
  .el_contactBtn_time {
    font-size: 1rem;
  }
}
.el_contactBtn_web {
  font-size: 1.95rem;
}
@media only screen and (max-width: 860px) {
  .el_contactBtn_web {
    font-size: 2rem;
  }
}
.el_contactBtn_web span {
  font-size: 1.07em;
}
.el_contactBtn__web {
  background-color: var(--color-green);
  border-color: var(--color-green);
}

.el_btn {
  font-family: var(--font-jost);
  font-weight: var(--font-weight-reg);
  text-align: center;
  position: relative;
  border-radius: 120em;
  border: 1px solid var(--color-btn);
  background-color: var(--color-btn);
  color: var(--color-white);
  padding: 1.2em 6em;
  display: inline-block;
}
@media only screen and (max-width: 860px) {
  .el_btn {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5em 0em;
  }
}
.el_btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  bottom: 50%;
  transform: translateY(50%);
  background-image: url(../img/common/arrow_contact.svg);
  height: 0.55em;
  width: 1em;
}
@media only screen and (max-width: 860px) {
  .el_btn::after {
    right: 5em;
  }
}
.el_btn__wht {
  border-color: var(--color-white);
  background-color: transparent;
}
.el_more {
  display: inline-block;
  border-bottom: 1px solid var(--color-black);
  padding: 0 0.5em 0.25em;
  line-height: 1;
  font-weight: var(--font-weight-light);
}
@media only screen and (max-width: 860px) {
  .el_more {
    font-size: 1rem;
  }
}
/*# sourceMappingURL=maps/common.css.map */