@charset "UTF-8";
/*
----------
FONT
----------
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&display=swap");

/*
----------
BASIC STYLE
----------
*/
html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-size: 1rem;
  line-height: 1.9;
  color: #000;
  font-weight: 400;
  word-break: break-all;
  overflow-wrap: break-word;
}

*,
:before,
:after {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table,
table th,
table td {
  border-spacing: 0;
  word-wrap: break-word;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 1.9em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.4rem;
  }
}

h2 {
  font-size: 1.6em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.3rem;
  }
}

h3 {
  font-size: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.1rem;
  }
}

p {
  text-align: justify;
  word-wrap: break-word;
  margin-bottom: 1.5rem;
}

/* ul li */
ul {
  list-style: none;
}

/* -------------
表示/非表示
 ------------- */
@media screen and (min-width: 1080px) {
  .none_pc {
    display: none;
  }
}
@media screen and (min-width: 1079px) and (max-width: 767px) {
  .none_tb {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .none_sp {
    display: none;
  }
}
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
----------
LINK
----------
*/
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: #817261;
  transition: 0.3s;
  cursor: pointer;
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0;
  color: #d29758;
}

a img:hover {
  cursor: pointer;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

a:hover img.hover_img {
  opacity: 0.8;
}

/* -------------
img link hover
 ------------- */
.zoom-in-img {
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}

.zoom-in-img img {
  width: 100%;
  height: 100%;
}

/* ホバーエフェクト */
.zoom-in-img img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

.zoom-in-img:hover img {
  transform: scale(1.15);
}

/*
----------
LAYOUT
----------
*/
.l-content {
  width: 90vw;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  flex: 1 0 auto; /* fix IE11 */
}

.flex-item {
  flex-basis: 50%;
}

/* -------------
layout space
 ------------- */
.top_space {
  padding-top: 80px;
}

.bm_space {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .top_space {
    padding-top: 60px;
  }
  .bm_space {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top_space {
    padding-top: 50px;
  }
  .bm_space {
    padding-bottom: 50px;
  }
}
/* -------------
CONTENT コンテンツ内のブロック
 ------------- */
/* コンテンツ内レイアウト */
.page-inner .flex-wrap.flex-between {
  justify-content: space-between;
}
.page-inner .flex-wrap.flex-reverse {
  flex-direction: row-reverse;
}
.page-inner .flex-wrap.flex-aligncenter {
  align-items: center;
}
.page-inner .flex-wrap .flex-item {
  flex-basis: 48%;
}
.page-inner .flex-wrap .flex-item.-photo img {
  margin-bottom: 1rem;
}
.page-inner .flex-wrap .flex-item.wid40 {
  flex-basis: 40% !important;
}
.page-inner .flex-wrap .flex-item.wid60 {
  flex-basis: 60% !important;
}
.page-inner .box_white {
  background-color: white;
}
.page-inner .box_padding_1 {
  padding: 1rem 1.75rem;
}
.page-inner .box_padding_1 p {
  margin: 0;
}
.page-inner .box_radius {
  border-radius: 2rem;
}

@media screen and (max-width: 1079px) {
  .page-inner .flex-wrap .flex-item {
    flex-basis: 100%;
  }
}
/* コンテンツの幅が狭いver */
.page-inner__thin {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

/*
----------
HEADER
----------
*/
/* PC
 ------------ */
header.p-Header {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.p-Header h1 {
  padding-left: 2rem;
  max-width: 360px;
  box-sizing: border-box;
}
header.p-Header h1 img {
  width: 100%;
}
header.p-Header .contact {
  margin-left: 1rem;
  text-align: center;
}
header.p-Header .contact a {
  width: 75px;
  height: 75px;
  display: block;
  background-color: #a49687;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.2s;
  cursor: pointer;
}
header.p-Header .contact a:hover {
  background-color: #d29758;
}
header.p-Header .contact img {
  width: 20px;
  height: 15px;
  margin: 0 auto 8px auto;
}
header.p-Header .contact span {
  font-size: 11px;
  line-height: 1;
  font-family: "Crimson Text", serif;
  font-weight: 400;
  color: #ebe5dc;
}
header.p-Header .p-Header__menu {
  width: calc(100% - 360px - 75px);
  text-align: right;
}

/* ------------
 *
　TB
 *
 ------------ */
@media screen and (max-width: 1300px) {
  header.p-Header {
    display: block;
    height: 55px;
  }
  header.p-Header .contact {
    display: none;
  }
}
/* ------------
 *
SB
 *
 ------------ */
@media screen and (max-width: 767px) {
  header.p-Header {
    padding: 0;
    height: 45px;
    display: flex;
    align-items: center;
  }
  header.p-Header h1 {
    width: calc(100% - 70px);
    padding-left: 1rem;
    margin: 0;
    line-height: 0.4;
    vertical-align: top;
  }
}
/*
----------
NAVI
----------
*/
/* ------------
 PC
 ------------ */
@media screen and (min-width: 1301px) {
  .display_none--pc {
    display: none;
  }
  .global-nav-icon {
    display: none;
  }
  .global-nav .nav-list {
    display: flex;
    justify-content: flex-end;
    align-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.4;
  }
  .global-nav .nav-list .nav-item > a {
    display: block;
    padding: 0.5rem 0.75rem;
    text-align: center;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    color: #000;
  }
  .global-nav .nav-list .nav-item > a:hover {
    color: #a49687;
  }
  .nav-list {
    position: relative;
    z-index: 5;
  }
  .nav-item_sub {
    opacity: 0;
    position: absolute;
    top: 40px;
    visibility: hidden;
  }
  .nav-item:hover .nav-item_sub {
    opacity: 1;
    visibility: visible;
    background-color: #a49687;
    width: 33.3333333333%;
  }
  .global-nav .nav-list .nav-item_sub ul {
    margin: 0 auto;
    padding: 0;
  }
  .global-nav .nav-list .nav-item_sub ul li {
    text-align: center;
    border: 0;
  }
  .global-nav .nav-list .nav-item_sub a {
    text-align: left;
    display: block;
    width: 100%;
    padding: 0.75rem 0.75rem;
    color: white;
  }
  .global-nav .nav-list .nav-item_sub a:hover {
    background-color: #d29758;
  }
}
/* ------------
 TB
 ------------ */
@media screen and (max-width: 1300px) {
  .global-nav {
    margin: 0;
    position: relative;
    padding-bottom: 10px;
    z-index: 100;
  }
  .global-nav .nav-list {
    background: #ebe5dc;
    display: none;
    left: 50%;
    padding: 0;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
    z-index: 5;
    padding-top: 70px;
  }
  .global-nav .nav-list .nav-item > a {
    display: block;
    border-bottom: 1px solid #cbb9a2;
    border-right: none;
    padding: 1rem 1rem;
    text-align: left;
  }
  .global-nav .nav-list li.nav-item > a.icn {
    width: 100%;
    position: relative;
    text-decoration: none;
  }
  .global-nav .nav-list li.nav-item > a.icn::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 1rem;
    content: "";
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: solid 2px #cbb9a2;
    border-right: solid 2px #cbb9a2;
    margin-top: -8px;
    transform: rotate(45deg);
  }
  .global-nav .nav-list .nav-item:last-child a {
    border-bottom: none;
  }
  .global-nav-icon {
    padding: 15px;
    box-sizing: border-box;
    background-color: #a49687;
    color: #4c371f;
    cursor: pointer;
    display: inline-block;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 11;
  }
  span.icn {
    width: 25px;
    height: 25px;
    display: block;
    background-size: cover;
    transition: all 0.4s;
  }
  span.icn.icn-bars {
    background-image: url(../images/common/icn-bars.png);
  }
  span.icn.icn-times {
    background-image: url(../images/common/icn-times.png);
  }
  .nav-item_sub {
    display: none;
  }
  .global-nav .nav-list .nav-item .nav-item_sub ul {
    margin: 0 auto;
    padding: 1rem;
  }
  .global-nav .nav-list .nav-item .nav-item_sub ul li > a {
    color: #000;
    text-align: left;
    padding: 0.5rem 1rem;
    display: block;
    font-weight: 400;
  }
  .global-nav .nav-list .nav-item .nav-item_sub ul li.submenu > a {
    padding: 0.2rem 1rem 0.2rem 3rem;
  }
  .global-nav {
    z-index: 10;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    pointer-events: none;
    /* 解消 */
  }
  .global-nav.is_open {
    pointer-events: auto;
    /* 戻す */
  }
  .nav-list {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10;
  }
  .global-nav .nav-list .nav-item > a {
    display: block;
    color: #000;
    padding: 1rem 2rem;
    text-align: left;
  }
  .global-nav .nav-list .nav-item_sub {
    background-color: white;
  }
  .global-nav .nav-list .nav-item_sub dl {
    display: none;
  }
}
/* ------------
 *
SB
 *
 ------------ */
@media screen and (max-width: 767px) {
  .global-nav-icon {
    padding: 15px;
  }
  span.icn {
    width: 15px;
    height: 15px;
  }
}
/*
----------
FOOTER
----------
*/
/*  pagetop
------------- */
#pagetop {
  position: fixed;
  bottom: 85px;
  right: 0;
  background-color: #a49687;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: center;
  color: white;
  font-size: 0.8rem;
  line-height: 1.4;
  padding: 1.5rem 1rem;
  display: block;
  z-index: 2;
  cursor: pointer;
  display: block;
}
#pagetop:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1079px) {
  #pagetop {
    padding: 1rem;
  }
}
footer {
  background-color: #ebe5dc;
}
footer .ft_inner_wrap {
  width: 90vw;
  padding: 80px 0;
  margin: 0 auto;
}
footer a {
  color: #000;
}
footer a:hover {
  color: #d29758;
}
footer h2 {
  text-align: center;
}
footer h2 img{
  max-width: 340px;
}
footer ul.ft_inner_1  {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
}
footer ul.ft_inner_1  li {
  padding: 0.5rem;
}
footer ul.ft_inner_1  li:after {
  content: "/";
  display: inline-block;
  padding-left: 0.5rem;
}
footer ul.ft_inner_1  li:last-child:after {
  content: "";
}
footer ul.ft_inner_sns{
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 0 0;
  gap: 20px;
}
footer ul.ft_inner_sns li img{
  width: 40px;
}
footer .ft__copyright {
  background-color: #000;
  padding: 2rem;
  text-align: center;
  color: white;
}
footer copy {
  font-size: 11px;
}

@media screen and (max-width: 1079px) {
  footer .ft_inner_wrap {
    padding: 4rem 0;
  }
  footer ul.ft_inner_1  {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  footer h2 img{
    max-width: 60%;
  }
  footer ul.ft_inner_1  {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer ul.ft_inner_1  li {
    flex-basis: 100%;
    text-align: center;
    padding: 0.25rem;
  }
  footer ul.ft_inner_1  li:after {
    content: "";
    padding-left: 0;
  }
}
/*
----------
BREAD CRUMB
----------
*/
.breadcrumb ul {
  display: flex;
  padding: 0.5rem 0;
}
.breadcrumb ul li {
  padding: 2px 20px 0 2px;
  position: relative;
}
.breadcrumb ul li::after {
  content: "›";
  width: 20px;
  height: 16px;
  line-height: 1;
  text-align: center;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: none;
  left: unset;
}
.breadcrumb ul li:last-child:after {
  content: "";
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
/*
----------
CLINIC INFO
----------
*/
.clinicinfo {
  margin-bottom: 80px;
}
.clinicinfo .map iframe {
  text-align: center;
  padding: 3rem auto;
  width: 100%;
  min-height: 400px;
  border: 0;
}
.clinicinfo__inner {
  display: flex;
  justify-content: space-between;
  margin: 3rem 3% 2rem 3%;
}
.clinicinfo .info,
.clinicinfo .calender {
  flex-basis: 48%;
}
.clinicinfo .calender h3 {
  margin: 0.25rem 0;
  color: #a49687;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.5;
}
.clinicinfo .calender p {
  margin: 0 0 0.5rem 0;
  line-height: 1.5;
}
.clinicinfo .info dl {
  border-bottom: 1px solid #a49687;
  padding: 0.75rem 1rem;
  display: flex;
}
.clinicinfo .info dl dt {
  flex-basis: 25%;
}
.clinicinfo .info dl dd {
  width: 75%;
}
.clinicinfo .info dl dd.logo {
  text-align: center;
  width: 100%;
}
.clinicinfo .info dl dd.logo img {
  max-width: 210px;
}
.clinicinfo .calender table {
  width: 100%;
  margin: 0 auto 1rem auto;
  border-collapse: collapse;
}
.clinicinfo .calender table th,
.clinicinfo .calender table td {
  text-align: center;
  border: 1px solid #a49687;
  color: #a49687;
}
.clinicinfo .calender table th {
  padding: 15px 2px;
  background-color: #ebe5dc;
}
.clinicinfo .calender table th:nth-of-type(1) {
  width: 8rem;
}
.clinicinfo .calender table th:nth-of-type(2),
.clinicinfo .calender table th:nth-of-type(3),
.clinicinfo .calender table th:nth-of-type(4),
.clinicinfo .calender table th:nth-of-type(5),
.clinicinfo .calender table th:nth-of-type(6),
.clinicinfo .calender table th:nth-of-type(7),
.clinicinfo .calender table th:nth-of-type(8) {
  width: calc(14.2857142857% - 8rem);
}
.clinicinfo .calender table td {
  padding: 15px 2px;
}
.clinicinfo .btn_container {
  margin-top: 1rem;
}

.label01 {
  padding: 1px 5px;
  background-color: #a49687;
  color: white;
  font-size: 0.9rem;
  margin: 0 10px 5px 0;
  min-width: 5rem;
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 1079px) {
  .clinicinfo .map iframe {
    min-height: 300px;
  }
  .clinicinfo__inner {
    flex-direction: column;
    margin: 0 4% 0 4%;
  }
  .clinicinfo .info,
  .clinicinfo .calender {
    flex-basis: 100%;
  }
  .clinicinfo .info {
    margin-bottom: 4rem;
  }
}
/*
----------
CONTACT
----------
*/
.contactarea {
  padding: 7rem 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/common/img-bg_contact.jpg);
  position: relative;
}
.contactarea::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.contactarea .title {
  color: white;
  position: relative;
  z-index: 1;
  margin: 0 auto 2rem auto;
}
.contactarea .content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactarea .content .content__tel {
  flex-basis: 50%;
  text-align: right;
}
.contactarea .content .content__tel a.tel {
  color: white;
  font-family: "Crimson Text", serif;
  font-weight: 600;
  font-size: 2.2rem;
}
.contactarea .content .content__tel a.tel span {
  font-size: 1.3em;
}
.contactarea .content .content__tel p {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: white;
  font-size: 1.2rem;
}
.contactarea .content .content__buttons {
  flex-basis: 50%;
  text-align: left;
}
.contactarea .content .content__buttons .btn {
  margin: 15px 0 15px 2rem;
}

@media screen and (max-width: 1079px) {
  .contactarea {
    padding: 4rem 1rem;
  }
  .contactarea .content .content__tel a.tel {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contactarea {
    flex-direction: column;
  }
  .contactarea .content {
    flex-direction: column;
  }
  .contactarea .content .content__tel {
    margin-bottom: 1.5rem;
  }
  .contactarea .content .content__tel p {
    font-size: 1rem;
  }
  .contactarea .content .content__tel a.tel {
    font-size: 1.4rem;
  }
  .contactarea .content .content__buttons {
    flex-basis: 100%;
  }
  .contactarea .content .content__buttons .btn {
    margin: 15px auto;
  }
}
/*
----------
LABO
----------
*/
.labo {
  padding: 7rem 1rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/top/img-bg_labo.jpg);
  position: relative;
}
.labo::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.labo .content {
  max-width: 600px;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 1;
}
.labo .content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: white;
}
.labo .content p {
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  color: white;
}
.labo .content .btn_container {
  margin-top: 3rem;
}

@media screen and (max-width: 1079px) {
  .labo {
    padding: 4rem 1rem;
  }
  .labo .content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.9;
  }
  .labo .content p {
    margin-bottom: 2rem;
    line-height: 1.9;
  }
  .labo .btn_container {
    margin-top: 2rem;
  }
}
/*
----------
TREATMENT MENU
----------
*/
/*  診療案内のメニュー  */
.treat_menu {
  padding-bottom: 100px;
}
.treat_menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.treat_menu ul li {
  flex-basis: calc(50% - 1rem);
  position: relative;
  margin-bottom: 1.75rem;
}
.treat_menu ul li img {
  width: 100%;
  vertical-align: top;
}
.treat_menu ul li .text {
  width: 40%;
  color: white;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.treat_menu ul li .text h2 {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1.8em;
}
.treat_menu ul li:hover a {
  opacity: 0.8;
}

@media screen and (max-width: 1079px) {
  .treat_menu {
    margin-bottom: 80px;
  }
  .treat_menu ul li {
    flex-basis: calc(50% - 0.5rem);
    margin-bottom: 1rem;
  }
  .treat_menu ul li .text {
    width: 40%;
    left: 1.5rem;
  }
  .treat_menu ul li .text h2 {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .treat_menu {
    margin-bottom: 0;
  }
  .treat_menu ul li {
    flex-basis: 100%;
  }
}
/*
----------
ALIGN
----------
*/
.center {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.tx-center {
  text-align: center !important;
}

.tx-left {
  text-align: left !important;
}

.tx-right {
  text-align: right !important;
}

/*
----------
BG COLOR
----------
*/
.bg_white {
  background-color: white;
}

.bg_lightgray {
  background-color: #eaeaea;
}

.bg_vague {
  background-color: #ebe5dc;
}

.bg_lightvague {
  background-color: #f4f0ec;
}

.col_vague {
  background-color: #ebe5dc;
}

/*
----------
BG PATTERN
----------
*/
.bg_pattern {
  background-image: url(../images/common/bg_pattern_circle_1.png), url(../images/common/bg_pattern_circle_2.svg), url(../images/common/bg_pattern_circle_3.svg), url(../images/common/bg_pattern_circle_1.svg), url(../images/common/bg_pattern_circle_1.png), url(../images/common/bg_pattern_circle_2.svg);
  background-position:
    -15% top,
    115% 900px,
    -15% 1800px,
    115% 3000px,
    -15% 4000px,
    115% 5000px;
  background-size: 45% auto;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1079px) {
  .bg_pattern {
    background-image: url(../images/common/bg_pattern_circle_1.png), url(../images/common/bg_pattern_circle_2.svg), url(../images/common/bg_pattern_circle_3.svg), url(../images/common/bg_pattern_circle_1.svg), url(../images/common/bg_pattern_circle_1.png), url(../images/common/bg_pattern_circle_2.svg);
    background-position:
      -15% top,
      115% 900px,
      -15% 1800px,
      115% 3000px,
      -15% 4000px,
      115% 5000px;
    background-size: 55% auto;
    background-repeat: no-repeat;
  }
}
/*
----------
BUTTON
----------
*/
a.btn {
  position: relative;
  margin: 0 auto;
  width: 280px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a49687;
  border: 1px solid #a49687;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 1px;
}
a.btn:visited {
  color: #a49687;
}
a.btn:hover {
  color: white;
  border: 1px solid #a49687;
  background-color: #a49687;
}
a.btn .arw {
  position: absolute;
  right: 1rem;
  width: 20px;
  height: 6px;
  border-bottom: 1px solid #a49687;
  border-right: 1px solid #a49687;
  transform: skew(45deg);
}
a.btn:hover .arw {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}
a.btn-wide {
  width: 380px;
}

@media screen and (max-width: 767px) {
  a.btn {
    width: 260px;
    height: 52px;
    letter-spacing: 0;
  }
  a.btn-wide {
    width: 90%;
  }
}
.btn.btn_long {
  width: 90%;
  max-width: 500px;
  height: auto;
  min-height: 56px;
  padding: 1rem 2rem 1rem 1rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .btn.btn_long {
    width: 90%;
  }
}
/* BUTTON MAIN WHITE
------------- */
a.btn.btn_white {
  color: white;
  border: 1px solid white;
}
a.btn.btn_white:visited {
  color: white;
}
a.btn.btn_white:hover {
  color: #4c371f;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.75);
}
a.btn.btn_white .arw {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
}
a.btn.btn_white:hover .arw {
  border-bottom: 1px solid #4c371f;
  border-right: 1px solid #4c371f;
}

/* GRADATION BUTTON
------------- */
a.btn_grad {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  padding: 1.75rem;
  width: 90%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  background: #a49687;
  background: linear-gradient(to right, #e5cfb7, #a49687);
  background: -webkit-linear-gradient(left, #e5cfb7, #a49687);
  background: -moz-linear-gradient(left, #e5cfb7, #a49687);
  color: white;
  cursor: pointer;
  letter-spacing: 1px;
}
a.btn_grad:visited {
  color: white;
}
a.btn_grad:hover {
  color: white;
  background: #817261;
  background: linear-gradient(to right, #817261, #817261);
  background: -webkit-linear-gradient(left, #817261, #817261);
  background: -moz-linear-gradient(left, #817261, #817261);
}
a.btn_grad .arw {
  position: absolute;
  right: 1.5rem;
  width: 30px;
  height: 10px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: skew(45deg);
}

@media screen and (max-width: 1079px) {
  .top_button a.btn_grad {
    padding: 1.5rem;
    font-size: 1.1rem;
  }
  .top_button a.btn_grad .arw {
    right: 1.5rem;
    width: 30px;
    height: 8px;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
  }
}
@media screen and (max-width: 767px) {
  .top_button a.btn_grad {
    padding: 1rem;
    font-size: 1rem;
  }
  .top_button a.btn_grad .arw {
    right: 1rem;
    width: 20px;
    height: 4px;
  }
}
/* BUTTON SMALL
------------- */
a.btn_small {
  position: relative;
  margin: 0 auto;
  padding: 0.75rem 1.75rem;
  max-width: 200px;
  color: #a49687;
  border: 1px solid #a49687;
  border-radius: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
a.btn_small:visited {
  color: #a49687;
}
a.btn_small:hover {
  color: white !important;
  border: 1px solid #a49687;
  background-color: #a49687;
}
a.btn_small:hover .arw {
  border-bottom: 1px solid white !important;
  border-right: 1px solid white !important;
}

/* comingsoon.scss */
.u-comingsoon {
  padding: 50px 0;
}
.u-comingsoon h2,
.u-comingsoon p {
  text-align: center;
}
.u-comingsoon h2 {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 5px;
  color: #777;
}
.u-comingsoon p {
  color: #a49687;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .u-comingsoon h2 {
    font-size: 1.6rem;
  }
}
/* -------------
スクロールでフェードイン jsで調整
 ------------- */
.fadeIn_content {
  opacity: 0;
  transition: all 1s;
}

.fadeIn {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .fadeIn_content {
    opacity: 1;
    transition: all 0.5s;
  }
  .fadeIn {
    opacity: 1;
  }
}
@font-face {
  font-family: "Crimson Text", serif;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/CrimsonText-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Crimson Text", serif;
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/CrimsonText-SemiBold.woff") format("woff");
  font-display: swap;
}
.tx-eng {
  font-family: "Crimson Text", serif;
  font-weight: 400;
}

.tx-eng-bold {
  font-family: "Crimson Text", serif;
  font-weight: 600;
}

/* text color */
.tx-link {
  color: #817261;
}

.tx-hover {
  color: #d29758;
}

.tx-brown {
  color: #4c371f;
}

.tx-black {
  color: #000;
}

.tx-gold {
  color: #a49687;
}

.tx-accent {
  color: #e24a75;
}

.tx-noticecolor{
    color: #e24a75;
}

/* font weight */
.tx-400 {
  font-weight: 400 !important;
}

.tx-500 {
  font-weight: 500 !important;
}

.tx-600 {
  font-weight: 600 !important;
}

.tx-700,.tx-bold {
  font-weight: 700 !important;
}

.tx-900 {
  font-weight: 900 !important;
}

/* font size */
.tx-xl {
  font-size: 1.25em !important;
}

.tx-l {
  font-size: 1.1em !important;
}

.tx-m {
  font-size: 1rem !important;
}

.tx-s {
  font-size: 0.85em !important;
}

.tx-xs {
  font-size: 0.7em !important;
}

/* other */
.notice {
  font-size: 0.9rem !important;
  line-height: 1.4;
  font-weight: normal;
}

/*
----------
IMAGE LAYOUT
----------
*/
img.photo_r,
img.photo_l {
  margin-bottom: 10px;
  vertical-align: top;
  max-width: 40%;
}

img.photo_r {
  float: right;
  margin-left: 40px;
}

img.photo_l {
  float: left;
  margin-right: 40px;
}

@media screen and (max-width: 767px) {
  img.photo_r,
  img.photo_l {
    max-width: 100%;
  }
  img.photo_r {
    float: inherit;
    margin-left: auto;
  }
  img.photo_l {
    float: inherit;
    margin-left: auto;
  }
}
img.img_rudius {
  border-radius: 12px;
}

/*
----------
LIST
----------
*/
.list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.list li {
  padding: 0.2rem;
  line-height: 1.6;
}

/* list-dots */
.list-dots {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  padding-left: 1em;
}
.list-dots li {
  padding: 0.15rem 0.5rem;
  position: relative;
  line-height: 1.6;
  text-indent: -1em;
  text-align: left;
}
.list-dots li::before {
  content: "・";
}
.list-dots.row {
  flex-direction: row;
}
.list-dots.row li {
  display: inline;
  margin-right: 1rem;
}

/*
----------
SPACE MARGIN
----------
*/
.mt0 {
  margin-top: 0 !important;
}

.mt05 {
  
  margin-top: 0.5em !important;
}
.mt10 {
  margin-top: 1em !important;
}

.mt20 {
  margin-top: 2em !important;
}

.mt30 {
  margin-top: 3em !important;
}

.mr10 {
  margin-right: 1em !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 0.5em !important;
}

.mb10 {
  margin-bottom: 1em !important;
}

.mb20 {
  margin-bottom: 2em !important;
}

.mb30 {
  margin-bottom: 3em !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pd10 {
  padding: 1em;
}

/* RADIUS BOX */
.pd-space {
  padding: 2rem;
}

.border-r {
  border-radius: 10px;
}

.border-1_brown {
  border: 1px solid #a49687;
}

@media screen and (max-width: 767px) {
  .pd-space {
    padding: 1rem;
  }
}
/* table */
.tbl-common {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #a49687;
  background-color: white;
}
.tbl-common th,
.tbl-common td {
  padding: 1rem;
  border: 1px solid #a49687;
  font-weight: 400;
  line-height: 1.4;
}
.tbl-common th {
  background-color: #eaeaea;
}
.tbl-common .wid25 {
  width: 25%;
}
.tbl-common .wid60 {
  width: 60%;
}
.tbl-common .wid50 {
  width: 50%;
}

/*
----------
TITLE
----------
*/
.title {
  margin-top: 100px;
  margin-bottom: 2rem;
}
.title h2,
.title h3 {
  text-align: center;
  margin: 0 auto 0 auto;
  line-height: 1.3;
}
.title h2 {
  font-size: 40px;
}
.title .tx-eng {
  font-weight: 400 !important;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.title h3 {
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 1079px) {
  .title {
    margin-top: 80px;
    margin-bottom: 1.5rem;
  }
  .title h2 {
    font-size: 3rem;
  }
  .title .tx-eng {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .title h2 {
    font-size: 2.2rem;
  }
  .title .tx-eng {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .title .tx-eng span.display_block {
    display: block;
  }
}
/* -------------
PAGE TITLE
 ------------- */
.pagetitle {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #cbb9a2;
  background-image: url(../images/title/common.jpg);
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.pagetitle::after {
  content: "";
  width: 100%;
  min-height: 100%;
  background: rgba(76, 55, 31, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.pagetitle.-common {
  background-image: url(../images/title/common.jpg);
}
.pagetitle.-contact {
  background-image: url(../images/title/about.jpg);
}
.pagetitle.-clinic {
  background-image: url(../images/title/clinic.jpg);
}
.pagetitle.-clinicalresearch {
  background-image: url(../images/title/clinicalresearch.jpg);
}
.pagetitle.-beautytreatment {
  background-image: url(../images/title/beautytreatment.jpg);
}
.pagetitle.-doctor {
  background-image: url(../images/title/doctor.jpg);
}
.pagetitle.-doctor {
  background-image: url(../images/title/doctor.jpg);
}

/* pagetitle 診療ページ用
------------- */
.pagetitle_treatments {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #cbb9a2;
  background-image: url(../images/title/common.png);
  background-size: auto 100%;
  display: flex;
  align-items: center;
}
.pagetitle_treatments.-regeneration {
  background-image: url(../images/title/regeneration.png);
  background-position: 95% center;
}
.pagetitle_treatments.-antiage {
  background-image: url(../images/title/antiage.png);
  background-position: 95% center;
}
.pagetitle_treatments.-hair {
  background-image: url(../images/title/hair.png);
  background-position: 95% center;
}
.pagetitle_treatments.-ed {
  background-image: url(../images/title/ed.png);
  background-position: 100% center;
}
.pagetitle_treatments.-slimming {
  background-image: url(../images/title/slimming.png);
  background-position: 100% center;
}
.pagetitle_treatments.-darmatology {
  background-image: url(../images/title/darmatology.png);
  background-position: 100% center;
}
これ不要では？ .pagetitle_treatments.-driptherapy {
  background-image: url(../images/title/driptherapy.png);
  background-position: 100% center;
}

/* タイトルの共通テキスト
------------- */
.pagetitle__inner {
  color: white;
  position: relative;
  z-index: 1;
}
.pagetitle__inner h1,
.pagetitle__inner h2 {
  text-align: left;
  margin: 0;
  margin-left: 4rem;
  line-height: 1.5;
}
.pagetitle__inner h1 {
  font-size: 3.3rem;
  font-size: clamp(2rem, 2.2vw, 3.3rem);
}
.pagetitle__inner h2.tx-eng {
  font-size: 2.8rem;
  font-family: "Crimson Text", serif;
  font-weight: 400;
}
.pagetitle__inner h2 {
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .pagetitle,
  .pagetitle_treatments {
    height: 190px;
  }
  .pagetitle__inner h1,
  .pagetitle__inner h2 {
    margin-left: 1rem;
  }
  .pagetitle__inner h1 {
    font-size: 1.6rem;
  }
  .pagetitle__inner h2 {
    font-size: 1.2rem;
  }
  .pagetitle__inner h2.tx-eng {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pagetitle,
  .pagetitle_treatments {
    height: 300px;
  }
}

/* pagetitle 治療案内
------------- */
.pagetitle_treatment {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #cbb9a2;
  background-image: url(../images/title/treatment.png);
  background-size: auto 100%;
  display: flex;
  align-items: center;
  background-position: 100% center;
}
.pagetitle_treatment::after {
  content: "";
  width: 100%;
  min-height: 100%;
  background: rgba(76, 55, 31, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.pagetitle_treatment .pagetitle__inner h1 {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  line-height: 1.3;
  font-size: clamp(1.6rem, 4.5vw, 4.5rem);
}
.pagetitle_treatment .pagetitle__inner h2 {
  font-weight: 400;
  margin-top: 1rem;
  font-size: clamp(0.9rem, 2.2vw, 1.3rem);
}
@media screen and (max-width: 767px) {
  .pagetitle_treatment {
    height: 220px;
  }
  .pagetitle_treatment::after {
    background: rgba(76, 55, 31, 0.75);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pagetitle_treatment {
    height: 300px;
  }
}

/* -------------
コンテンツのブロック
 ------------- */
/* サブタイトル
 ------------- */
.page-inner__title {
  margin-bottom: 2rem;
}
.page-inner__title h2,
.page-inner__title h3 {
  text-align: center;
  margin: 10px auto;
  line-height: 1.4;
  font-weight: 700;
}
.page-inner__title h2 {
  font-size: 34px;
}
.page-inner__title .tx-eng {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.2;
}
.page-inner__title .ttl {
  color: #4c371f;
  font-size: 34px;
}
.page-inner__title .ttl_icon {
  color: #4c371f;
  text-align: center;
  font-size: 34px;
  line-height: 1.5;
  font-weight: 700;
  margin: 2rem auto;
}
.page-inner__title .ttl_icon::before {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url(../images/common/logomark_vague.svg);
  background-size: contain;
  display: block;
  margin: 0 auto 10px auto;
}
.page-inner .subttl_1 {
  margin: 1rem 0;
  color: #a49687;
  font-size: 1.45rem;
  font-weight: 700;
}
.page-inner .subttl_underline {
  padding: 1rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.page-inner .subttl_underline::before {
  background-color: #a49687;
  bottom: 0;
  content: "";
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 5rem;
}
.page-inner .subttl_underline_2 {
  padding: 0.5rem 0 0.25rem 0;
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: left;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #4c371f;
  border-bottom: 1px solid #a49687;
}
.page-inner .subttl_color {
  display: flex;
  align-items: stretch;
  background-color: #a49687;
  color: white;
  margin: 1.5rem auto;
  padding: 6px 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.page-inner .subttl_color__number {
  padding: 0;
}
.page-inner .subttl_color .number {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #4c371f;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-inner .subttl_color h3 {
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0 1.5rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.page-inner > .page-inner__title > .ttl_icon {
  margin-top: 0;
}

@media screen and (max-width: 1079px) {
  .page-inner__title h2 {
    font-size: 1.8rem;
  }
  .page-inner__title .tx-eng {
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
  }
  .page-inner__title .ttl {
    font-size: 1.6rem;
  }
  .page-inner__title .ttl_icon {
    font-size: 1.6rem;
    margin: 1rem auto;
  }
  .page-inner__title .ttl_icon::before {
    content: "";
    width: 50px;
    height: 50px;
  }
  .page-inner .subttl_1 {
    font-size: 1.3rem;
  }
  .page-inner .subttl_underline {
    font-size: 1.3rem;
  }
  .page-inner .subttl_color {
    margin: 1rem auto;
  }
  .page-inner .subttl_color .number {
    width: 3rem;
    height: auto;
    font-size: 1rem;
  }
  .page-inner .subttl_color h3 {
    padding: 10px;
  }
}

/*# sourceMappingURL=basic.css.map */
