@charset "UTF-8";
/* FONT */
/* Animation 関連 */
/* ブレイクポイント(for MediaQuery - max-width(PC->sp)) : オリジナルは scss/variables */
/* 体裁共通 */
/* 汎用カラー */
/* 汎用 Mixin */
/* ==================================================
common.css
================================================== */
/* common
--------------------------------------------------*/
html {
  font-size: 62.5% !important;
  font-feature-settings: "palt";
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  -o-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-family: "Helvetica Neue", Arial, Roboto, "游ゴシック体 Medium", YuGothic, "Yu Gothic Medium", sans-serif;
  position: relative;
  line-height: 1.42857143;
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
  z-index: 1;
  background-color: #fefcf5;
  overflow-x: hidden;
}
body::before, body::after {
  position: absolute;
  display: block;
  content: "";
  z-index: 0;
  top: 0;
}
body::before {
  width: 50vw;
  height: 600px;
  background: transparent url("../images/common/bg-body-cloud-green.jpg") left top no-repeat;
  background-size: contain;
  opacity: 0.5;
}
body::after {
  width: 50vw;
  height: 1000px;
  background: transparent url("../images/common/bg-body-finger-green.svg") 25vw top no-repeat;
  background-size: contain;
  right: 0;
  opacity: 0.2;
}

@media (max-width: 575px) {
  body::before {
    width: 100%;
    height: 300px;
    background-size: 100% 100%;
    background-position: center top;
  }
  body::after {
    display: none;
  }
}
section {
  margin-bottom: 120px;
}

@media (max-width: 767px) {
  section {
    margin-bottom: 80px;
  }
}
.marugo {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* レイアウト調整
--------------------------------------------------*/
.margin-top {
  margin-top: 80px !important;
}

.margin-bottom {
  margin-bottom: 80px !important;
}

.margin-top-half {
  margin-top: 40px !important;
}

.margin-bottom-half {
  margin-bottom: 40px !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

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

.no-padding-left {
  padding-left: 0 !important;
}

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

.no-padding {
  padding: 0 !important;
}

.no-gutter > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* biggerlink
--------------------------------------------------*/
.biggerlink {
  cursor: pointer;
}

.biggerlink:hover a {
  text-decoration: underline;
}

/* Flex-box
--------------------------------------------------*/
/*
==================================================
 8.0 - Flex-box
--------------------------------------------------
*/
.alm-reveal,
.flex-5,
.flex-4,
.flex-3,
.flex-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  justify-content: space-between;
}

.flex-5 .unit,
.flex-4 .unit,
.flex-3 .unit,
.flex-2 .unit {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  -ms-flex-flow: column;
  flex-flow: column;
}

.flex-5 .unit ul li,
.flex-5 .unit ol li,
.flex-4 .unit ul li,
.flex-4 .unit ol li,
.flex-3 .unit ul li,
.flex-3 .unit ol li,
.flex-2 .unit ul li,
.flex-2 .unit ol li {
  width: 100%;
  text-align: left;
}

.flex-5 li,
.flex-5 .unit {
  width: 20%;
}

.flex-4 li,
.flex-4 .unit {
  width: 25%;
}

.alm-reveal li,
.flex-3 li,
.flex-3 .unit {
  width: 33.333%;
}

.flex-2 li,
.flex-2 .unit {
  width: 50%;
}

.flex-pic {
  background-position: center center;
  background-size: cover;
}

.alm-reveal::after,
.flex-3::after { /* 左寄せ（flex-3のみ有効） */
  content: "";
  display: block;
  width: 33.2%;
}

/* 特殊サイズ */
.doctor-nav .flex-2 .flex-pic {
  width: 40%;
}

.doctor-nav .flex-2 .note {
  width: 60%;
}

@media screen and (max-width: 991px) {
  /* < 992px */
  .flex-5 li,
  .flex-5 .unit,
  .flex-4 li,
  .flex-4 .unit,
  .alm-reveal li,
  .flex-3 li,
  .flex-3 .unit,
  .flex-2 li,
  .flex-2 .unit {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  /* < 768px */
  .flex-5,
  .flex-4,
  .alm-reveal,
  .flex-3,
  .flex-2 {
    align-items: center;
    justify-content: center;
  }
  .flex-5 li,
  .flex-5 .unit,
  .flex-4 li,
  .flex-4 .unit,
  .alm-reveal li,
  .flex-3 li,
  .flex-3 .unit,
  .flex-2 li,
  .flex-2 .unit {
    width: 100% !important;
  }
  .flex-pic {
    height: 300px;
  }
}
/* Waypoints
--------------------------------------------------*/
.animated {
  visibility: visible !important;
}

.delay {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.delay-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.delay-2 {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.delay-3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay-4 {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s;
}

.delay-5 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.delay-6 {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.delay-7 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

/* モバイル環境でのメインコンテント内のディレイは無効 */
@media screen and (max-width: 767px) {
  .main-content .delay,
  .main-content .delay-1,
  .main-content .delay-2,
  .main-content .delay-3,
  .main-content .delay-4,
  .main-content .delay-5,
  .main-content .delay-6,
  .main-content .delay-7 {
    -webkit-animation-delay: 0;
    animation-delay: 0;
  }
}
/* グーテンベルク
--------------------------------------------------*/
.alignwide {
  /* 特に指定なしで最大化される模様 */
}

.alignfull {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
}

/* Links
--------------------------------------------------*/
a {
  transition: color 0.5s ease;
}
a i {
  font-style: normal;
}

a.goto-top {
  position: relative;
  display: inline-block;
  text-align: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #6a5325 !important;
}
a.goto-top:hover {
  color: #c9a14c !important;
}
a.goto-top::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1rem;
  margin-left: 1rem;
  background: transparent url("../images/common/icon-arrow-top.svg") center center no-repeat;
  background-size: contain;
}

.link-external::after {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  display: inline-block;
  content: "\f08e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #6a5325;
}

/* 可変テキストセンタリング
--------------------------------------------------*/
.text-center-xl,
.text-center-lg,
.text-center-md,
.text-center-sm {
  text-align: center;
}

@media (max-width: 1199px) {
  .text-center-xl {
    text-align: left;
  }
}
@media (max-width: 991px) {
  .text-center-lg {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .text-center-md {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .text-center-sm {
    text-align: left;
  }
}
/* Header
--------------------------------------------------*/
header {
  position: relative;
  z-index: 100;
}
header .site-header {
  padding-top: 40px;
}
header .logo {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}
header .logo::before {
  display: inline-block;
  content: " ";
  vertical-align: -40px;
  margin-right: 20px;
  width: 100px;
  height: 9rem;
  background: transparent url("../images/common/sprout.svg") center center no-repeat;
  background-size: contain;
}
header .logo img {
  max-width: calc(100% - 100px - 20px);
  height: 9rem;
}

.mobile-nav {
  display: none;
}

@media (max-width: 991px) {
  header .logo::before {
    width: 70px;
    margin-right: 10px;
  }
  header .logo img {
    max-width: calc(100% - 90px - 10px);
    height: 60px;
  }
}
/* Header (mobile）
--------------------------------------------------*/
.page.fixed-menu {
  padding-top: 100px;
}

.fixed-menu .mobile-nav {
  position: relative;
  display: block;
  padding-left: 15px;
  padding-right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding-left: var(--bs-gutter-x, 0.75rem);
  padding-right: var(--bs-gutter-x, 0.75rem);
  top: 0;
  width: 100%;
  position: fixed;
  z-index: 100;
}
.fixed-menu .mobile-nav .body {
  display: flex;
  max-width: 1320px;
  margin: auto;
}
.fixed-menu .mobile-nav .logo {
  text-align: left;
}
.fixed-menu .mobile-nav .logo::before {
  width: 33px;
}
.fixed-menu .mobile-nav .logo img {
  max-width: none;
  height: 25px;
}
.fixed-menu .mobile-nav .menu li {
  display: flex;
  height: 100%;
  align-items: center;
}
.fixed-menu .mobile-nav .mobile-menu {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: var(--bs-gutter-x, 0.75rem);
  top: 50%;
  transform: translate(0, -50%);
}
.fixed-menu .mobile-nav .mobile-menu {
  display: none;
}
.fixed-menu .mobile-nav .logo::before {
  width: 45px;
}
.fixed-menu .mobile-nav .logo img {
  height: auto;
  width: 245px;
}
.fixed-menu .mobile-nav .menu {
  width: calc(100% - 320px);
  margin-bottom: 0;
  display: flex;
  justify-content: right;
  align-items: center;
}
.fixed-menu .mobile-nav .menu li a {
  font-size: 1.8rem;
}

.home .mobile-nav .menu li.selected::after,
.page .mobile-nav .menu li.selected::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  bottom: 0;
  background-color: #32bd27;
  border-radius: 2.5px 2.5px 0 0;
}

@media (max-width: 991px) {
  .fixed-menu .mobile-nav .menu li {
    margin-right: 1.5rem;
  }
  .fixed-menu .mobile-nav .menu li a {
    font-size: 1.8rem;
  }
  .fixed-menu .mobile-nav .menu li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .home {
    padding-top: 100px;
  }
  .pc-nav {
    display: none;
  }
  .mobile-nav {
    position: relative;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 100;
  }
  .mobile-nav .body {
    display: flex;
    max-width: 1320px;
    margin: auto;
  }
  .mobile-nav .logo {
    text-align: left;
  }
  .mobile-nav .logo::before {
    width: 33px;
  }
  .mobile-nav .logo img {
    max-width: none;
    height: 25px;
  }
  .mobile-nav .menu li {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .mobile-nav .mobile-menu {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    right: var(--bs-gutter-x, 0.75rem);
    top: 50%;
    transform: translate(0, -50%);
  }
  .mobile-nav .body {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mobile-nav .logo::before {
    width: 33px !important;
    margin-right: 5px;
  }
  .mobile-nav .logo img {
    width: 180px !important;
  }
  .mobile-nav .menu {
    display: none !important;
  }
  .mobile-menu {
    display: block !important;
  }
  .mobile-menu-list .menu li.selected::after {
    bottom: 25px !important;
    border-radius: 0 !important;
  }
}
/* horizontal Bar（ヘッダとフッタ用） 
--------------------------------------------------*/
.horizontal-bar {
  display: block;
  position: relative;
  background-color: #6a5325;
  border-radius: 2.5px;
  width: calc(100% - 100px*2);
  margin: 40px auto;
  height: 5px;
}
.horizontal-bar::before, .horizontal-bar::after {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 35px;
  background-color: red;
  top: -14.98px;
  background: transparent url("../images/common/clover-double.svg") left center no-repeat;
  background-size: contain;
}
.horizontal-bar::before {
  left: -100px;
}
.horizontal-bar::after {
  right: -100px;
  transform: scale(-1, 1);
}

@media (max-width: 575px) {
  .horizontal-bar {
    width: calc(100% - 100px*.7*2);
  }
  .horizontal-bar::before, .horizontal-bar::after {
    top: -8.995px;
    width: 70px;
    height: 24.5px;
  }
  .horizontal-bar::before {
    left: -70px;
  }
  .horizontal-bar::after {
    right: -70px;
  }
}
/* Navigation
--------------------------------------------------*/
ul.menu {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
ul.menu li {
  display: inline-block;
  margin-right: 3rem;
}
ul.menu li a {
  font-size: 2.4rem;
  font-weight: bold;
  color: #6a5325;
  text-decoration: none;
}
ul.menu li a:hover {
  color: #32bd27;
}
ul.menu li.selected {
  position: relative;
}
ul.menu li.selected a {
  color: #32bd27;
}
ul.menu li:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  ul.menu li a {
    font-size: 2.7rem;
  }
}
.mobile-menu-list {
  display: none;
  position: absolute;
  width: 100%;
  height: calc(100vh - 90px);
  height: calc(100dvh - 90px);
  top: 90px;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.mobile-menu-list .menu {
  display: block !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin-bottom: 0;
}
.mobile-menu-list .menu li {
  display: block !important;
  height: auto !important;
  width: 100%;
  padding: 0 0 25px;
}
.mobile-menu-list .menu li a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 50px;
  border: 1px solid #93c12a;
  font-size: 1.8rem;
}
.mobile-menu-list .menu li.selected::after {
  display: none;
}

.open-mobile-menu {
  overflow: hidden;
}
.open-mobile-menu .mobile-menu-list {
  display: flex !important;
}

@media (max-width: 575px) {
  .mobile-menu-list .menu li a {
    padding: 15px;
    height: 12vh;
  }
}
/* Hamburger Menu
--------------------------------------------------*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 50px;
  height: 40px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #93c12a;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 5px;
}
.menu-trigger span:nth-of-type(2) {
  top: 18px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 5px;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

.menu-trigger:hover span {
  background-color: #c9a14c;
}

/* Footer
--------------------------------------------------*/
footer .horizon {
  position: relative;
  height: 19vw;
  margin: 160px 0 80px;
}
footer .horizon .office, footer .horizon::before, footer .horizon::after {
  height: 19vw;
}
footer .horizon .office {
  position: absolute;
  display: block;
  content: "";
  width: 50%;
  background-color: red;
  transform: translate(50%, 0%);
  z-index: 3;
  background: transparent url("../images/common/bg-footer-office.png") center center no-repeat;
  background-size: contain;
}
footer .horizon::before, footer .horizon::after {
  position: absolute;
  content: "";
  width: 60%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
footer .horizon::before {
  left: 0;
  background-image: url("../images/common/bg-footer-horizon-left.svg");
  background-position: left top;
}
footer .horizon::after {
  right: 0;
  background-image: url("../images/common/bg-footer-horizon-right.svg");
  background-position: right top;
}
footer h2 {
  font-size: 6rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #32bd27;
  margin-bottom: 2rem;
}
footer address {
  margin-bottom: 3rem;
}
footer address .address {
  font-size: 3.6rem;
  color: #817a6c;
}
footer .contact-number .title,
footer .contact-number .number {
  display: flex;
  align-items: end;
}
footer .contact-number .title {
  color: #32bd27;
  font-weight: normal;
  font-size: 2.39rem;
  padding-bottom: 15px;
}
footer .contact-number .number {
  color: #817a6c;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 5.9rem;
  justify-content: end;
}
footer table {
  font-size: 2.4rem;
}
footer table td img {
  height: 2.4rem;
}
footer .horizontal-bar {
  margin-top: 80px;
}
footer nav {
  margin-bottom: 80px;
}
footer ul.sns-links {
  list-style: none;
  display: flex;
  gap: 15px;
  padding-left: 0;
  margin-bottom: 50px;
  justify-content: center;
}
footer ul.sns-links li a {
  transition: opacity 0.5s ease;
}
footer ul.sns-links li a:hover {
  opacity: 0.5;
}
footer ul.sns-links li img {
  max-width: 50px;
  width: 100%;
}
footer .copyright {
  text-align: center;
  color: #817a6c;
  margin-bottom: 80px;
}

@media (max-width: 1399px) {
  footer .contact-number .number {
    font-size: 5.1rem;
  }
}
@media (max-width: 1199px) {
  footer .contact-number .number {
    font-size: 4rem;
  }
}
@media (max-width: 991px) {
  footer h2,
  footer address {
    text-align: center;
  }
  footer .access-detail a {
    margin: 0 auto calc(80px/2);
  }
}
@media (max-width: 767px) {
  footer .menu li a {
    font-size: 1.8rem;
  }
  footer .menu li:first-child { /* フッタのリンクは自動生成されるが「ホーム」はヘッダに常時表示されるため非表示にする */
    display: none !important;
  }
}
@media (max-width: 575px) {
  footer h2 {
    font-size: 12vw;
  }
  footer address .address {
    font-size: 2.4rem;
  }
  footer .contact-number .title,
  footer .contact-number .number {
    justify-content: center;
  }
  footer table {
    font-size: 1.4rem;
  }
  footer table th, footer table td {
    padding: 5px;
  }
  footer table td img {
    height: 1.4rem;
  }
  footer .menu {
    display: flex;
    flex-wrap: wrap;
  }
  footer .menu li {
    width: 50%;
    display: block;
    margin-right: 0;
    padding: 15px;
  }
}
/* Main Content
--------------------------------------------------*/
.main-content {
  position: relative;
  z-index: 1;
  line-height: 3rem;
}
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.main-content h1,
.main-content h2 {
  position: relative;
  font-weight: 800;
  margin: 40px auto;
  text-align: center;
}
.main-content h1 .sub,
.main-content h2 .sub {
  font-size: 3rem;
  color: #c9a14c;
}
.main-content h1 {
  color: #6a5325;
  font-size: 4.8rem;
  margin-bottom: 80px;
}
.main-content h1 .horizontal-bar {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.main-content h2 {
  color: #32bd27;
  font-size: 4.8rem;
  max-width: 800px;
  padding-left: 55px;
  padding-right: 55px;
  margin-bottom: 120px;
}
.main-content h2 .bar {
  position: relative;
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 2.5px;
  background-color: #93c12a;
  margin: 2rem auto;
}
.main-content h2 .bar::before, .main-content h2 .bar::after {
  position: absolute;
  display: block;
  content: "";
  width: 40px;
  height: 35px;
  background-color: red;
  top: -14.98px;
  background: transparent url("../images/common/clover-single.svg") left center no-repeat;
  background-size: contain;
}
.main-content h2 .bar::before {
  left: -40px;
}
.main-content h2 .bar::after {
  right: -40px;
  transform: scale(-1, 1);
}
.main-content h3 {
  font-size: 3.6rem;
  font-weight: 600;
  color: #32bd27;
}
.main-content h4 {
  font-size: 3rem;
  color: #6a5325;
}
.main-content h4 small {
  font-size: 1.8rem;
}
.main-content h5 {
  font-size: 2.4rem;
  color: #93c12a;
}
.main-content h6 {
  font-size: 1.8rem;
  font-weight: bold;
}
.main-content h3, .main-content h4, .main-content h5, .main-content h6, .main-content p, .main-content ul, .main-content ol, .main-content dl, .main-content table, .main-content .alert, .main-content hr {
  margin-bottom: 40px;
}
.main-content a {
  color: #32bd27;
}
.main-content a:hover {
  color: #6a5325;
}
.main-content .gutter {
  --bs-gutter-x: 40px;
}
.main-content .gutter2 {
  --bs-gutter-x: 80px;
}
.main-content .alert {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fcf7e3;
  border-radius: 7.5px;
  color: #6a5325;
}
.main-content .alert h3, .main-content .alert h4, .main-content .alert h5, .main-content .alert h6 {
  margin-bottom: 1.5rem;
}
.main-content .alert p, .main-content .alert ul, .main-content .alert ol, .main-content .alert dl, .main-content .alert table {
  margin-bottom: 1rem;
}
.main-content .alert-treatment {
  background-color: #ffffff;
}
.main-content .alert-treatment .icon-leaves {
  background: transparent url("../images/common/icon-leaves.svg") right center no-repeat;
  background-size: 3rem 2.334rem;
  padding-right: 4rem;
}
.main-content .treatments article {
  margin-bottom: 40px;
}
.main-content .treatments article:last-child {
  margin-bottom: 0;
}
.main-content dl {
  margin-bottom: calc(80px*.5 - 1.5rem);
}
.main-content dl dt, .main-content dl dd {
  margin-bottom: 1.5rem;
}
.main-content dl dt {
  position: relative;
  color: #6a5325;
  padding-left: 2.5rem;
}
.main-content dl dt::before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 2.75rem;
  background-color: #dacfba;
  border-radius: 5px;
  top: 0.1rem;
  left: 0.5rem;
}
.main-content ul.dot {
  list-style: none;
  /* デフォルトのアイコンを消す */
  margin: 0;
  /* デフォルト指定上書き */
  padding: 0;
  /* デフォルト指定上書き */
}
.main-content ul.dot li {
  position: relative;
  padding-left: 2.5rem;
}
.main-content ul.dot li::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  left: 0;
  top: 1rem;
  background-color: #93c12a;
  border-radius: 50%;
}
.main-content hr {
  border-width: 0 0 5px;
  border-style: solid;
  border-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 1"><circle fill="hsl(39,30%,70%)" cx="1" cy="0.5" r="0.5"/></svg>') 0 0 100% repeat;
  background-color: transparent;
}

@media (max-width: 767px) {
  .main-content h1,
  .main-content h2 {
    font-size: 4.32rem;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .main-content h1 .bar,
  .main-content h2 .bar {
    width: calc(100% - 40px*.7*2);
  }
  .main-content h1 .bar::before, .main-content h1 .bar::after,
  .main-content h2 .bar::before,
  .main-content h2 .bar::after {
    top: -8.995px;
    width: 28px;
    height: 24.5px;
  }
  .main-content h1 .bar::before,
  .main-content h2 .bar::before {
    left: -28px;
  }
  .main-content h1 .bar::after,
  .main-content h2 .bar::after {
    right: -28px;
  }
  .main-content h1 .sub,
  .main-content h2 .sub {
    display: block;
    font-size: 1.8rem;
  }
  .main-content h1 {
    font-size: 4.32rem;
  }
  .main-content h2 {
    font-size: 3rem;
    margin-bottom: 80px;
  }
  .main-content h3 {
    font-size: 3.24rem;
  }
  .main-content h4 {
    font-size: 2.7rem;
  }
  .main-content h5 {
    font-size: 2.16rem;
  }
  .main-content .gutter {
    --bs-gutter-x: auto;
  }
  .main-content .gutter2 {
    --bs-gutter-x: auto;
  }
}
table {
  width: 100%;
  margin-bottom: calc(80px/4);
}
table th, table td {
  border: 1px solid #6a5325;
  padding: 10px;
  text-align: center;
}
table th {
  color: #ffffff;
  background-color: #93c12a;
  font-weight: normal;
}

ul.note {
  position: relative;
}
ul.note li {
  position: relative;
  list-style: none;
  margin-bottom: 0.5rem;
}
ul.note li::before {
  position: absolute;
  left: -15px;
  top: -0.15rem;
  content: "※";
}

/* リードイメージ＋ノート
--------------------------------------------------*/
.img-mask {
  -webkit-clip-path: url(#clipping-mask-box); /*Safari, iOS Safari 用*/
  clip-path: url(#clipping-mask-box);
}

.lead-image .clip-svg {
  position: relative;
  -webkit-clip-path: url(#clipping-mask-lead); /*Safari, iOS Safari 用*/
  clip-path: url(#clipping-mask-lead);
  overflow: hidden;
}
.lead-image .clip-svg::before, .lead-image .clip-svg::after {
  position: absolute;
  display: block;
  content: "";
  width: 230px;
  height: 140px;
  background-repeat: no-repeat;
  background-size: contain;
}
.lead-image .clip-svg::before {
  left: 0;
  top: 0;
  background-image: url("../images/common/lead-img-corner-before.svg");
  background-position: left top;
}
.lead-image .clip-svg::after {
  right: 0;
  bottom: 0;
  background-image: url("../images/common/lead-img-corner-after.svg");
  background-position: right bottom;
}
.lead-image .note {
  position: relative;
  max-width: 500px;
  text-align: center;
  margin: 40px auto 160px;
  line-height: 3rem;
  font-size: 1.8rem;
}
.lead-image .note::before, .lead-image .note::after {
  position: absolute;
  display: block;
  content: "";
  width: 80px;
  height: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../images/common/bg-tree.svg");
}
.lead-image .note::before {
  left: -180px;
  top: 0;
}
.lead-image .note::after {
  right: -180px;
  top: 0;
  transform: scale(-1, 1);
}

@media (max-width: 991px) {
  .lead-image .note::before {
    left: -90px;
  }
  .lead-image .note::after {
    right: -90px;
  }
}
@media (max-width: 767px) {
  .lead-image .img-fluid {
    max-width: 150%;
    margin-left: -25%;
  }
  .lead-image .clip-svg::before, .lead-image .clip-svg::after {
    width: 20vw;
  }
  .lead-image .note {
    text-align: left;
    margin-bottom: 80px;
  }
  .lead-image .note::before, .lead-image .note::after {
    display: none;
  }
}
/* ボタンリンク
--------------------------------------------------*/
.button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 430px;
  background-color: #817a6c;
  color: #ffffff !important;
  padding: 30px 15px;
  border-radius: 15px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
.button::after {
  position: absolute;
  content: "";
  display: block;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  border: 4px solid #ffffff;
  border-radius: 12px;
  top: 5px;
  left: 5px;
}

.button:hover {
  color: #ffffff !important;
  background-color: #c9a14c;
}

/* タブ
--------------------------------------------------*/
.nav.nav-tabs {
  border: none;
  margin-bottom: 0;
}
.nav.nav-tabs .nav-link {
  background-color: #dacfba;
  border-radius: 7.5px 7.5px 0 0;
  padding: 16px 5px;
  border: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
  width: 100%;
  height: 100%;
  color: #6a5325;
  line-height: 1.8rem;
}
.nav.nav-tabs .nav-link.active {
  border: none;
  background-color: #fcf7e3;
  color: #6a5325 !important;
}
.nav.nav-tabs .nav-link:hover {
  color: #c9a14c;
}

.tab-content {
  background-color: #fcf7e3;
  padding: 80px 40px;
  border-radius: 0 0 7.5px 7.5px;
}

.nab-tav-sp {
  width: 100%;
  position: relative;
  display: none;
}
.nab-tav-sp select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 2px solid #817a6c;
  border-radius: 7.5px;
  color: #6a5325;
  font-size: 16px;
  padding: 0 10px;
  height: 40px;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  background-color: #fcf7e3;
}
.nab-tav-sp option[selected][disabled] {
  display: none;
}
.nab-tav-sp::after {
  position: absolute;
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-position: center center;
  background: transparent url(../images/common/icon-arrow-top.svg) no-repeat right 10px center/16px auto;
  transform: scale(1, -1);
  top: 0.8rem;
  right: 1rem;
}

@media (max-width: 767px) {
  .nav.nav-tabs {
    display: none;
  }
  .tab-content {
    padding: 26.6666666667px 20px;
    border-radius: 7.5px;
  }
  .nab-tav-sp {
    display: block;
  }
}
/* タグリスト
--------------------------------------------------*/
ul.tags {
  list-style: none;
  padding-left: 0;
}
ul.tags li {
  display: inline-block;
  margin-bottom: 1.75rem;
}
ul.tags li a {
  padding: 1rem 1.5rem;
  background-color: #dacfba;
  border-radius: 7.5px;
  text-decoration: none;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  color: #6a5325;
}
ul.tags li a:hover {
  color: #c9a14c;
}

/* ホーム
--------------------------------------------------*/
@keyframes move-y-center {
  from {
    margin-top: -5px;
  }
  to {
    margin-top: 10px;
  }
}
@keyframes move-y-left {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
@keyframes move-y-right {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}
.home #hero {
  margin-bottom: 160px;
}

.hero .container {
  position: relative;
  z-index: 5;
  margin-top: 80px;
  margin-bottom: -90px;
}
.hero .container::before, .hero .container::after {
  position: absolute;
  display: block;
  content: "";
  width: 26%;
  height: 350px;
  bottom: 50px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 5;
}
.hero .container::before {
  left: 30px;
  background-image: url("../images/home/img-hero-left.png");
  animation: move-y-left 2s infinite alternate ease-in-out;
}
.hero .container::after {
  right: 30px;
  background-image: url("../images/home/img-hero-right.png");
  animation: move-y-right 2.1s infinite alternate ease-in-out;
}
.hero .container span::before {
  position: absolute;
  display: block;
  content: "";
  width: 38%;
  height: 500px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: transparent url("../images/home/img-hero-center.png") center bottom no-repeat;
  background-size: contain;
  z-index: 10;
  animation: move-y-center 1.5s infinite alternate ease-in-out;
}
.hero .horizon {
  position: relative;
  height: 100%;
  height: 185px;
}
.hero .horizon::before, .hero .horizon::after {
  position: absolute;
  display: block;
  content: "";
}
.hero .horizon::before {
  width: 58.25vw;
  height: 100%;
  background: transparent url("../images/common/bg-hero-horizon-left.svg") left bottom no-repeat;
  background-size: contain;
  z-index: 2;
}
.hero .horizon::after {
  width: 61.1vw;
  height: 100%;
  right: 0;
  background: transparent url("../images/common/bg-hero-horizon-right.svg") right bottom no-repeat;
  background-size: contain;
  z-index: 1;
}
.hero .horizon .gradient {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 500px;
  background: transparent url("../images/common/bg-hero-gradient.png") center bottom no-repeat;
  background-size: cover;
}

@media (max-width: 1199px) {
  .hero .container::before, .hero .container::after {
    height: 250px;
  }
  .hero .container span::before {
    height: 370px;
  }
  .hero .horizon .gradient {
    bottom: 10px;
    background-size: cover;
  }
}
@media (max-width: 991px) {
  .hero .container::before, .hero .container::after {
    height: 200px;
    bottom: 30px;
  }
  .hero .container::before {
    left: 10px;
  }
  .hero .container::after {
    right: 10px;
  }
  .hero .container span::before {
    height: 290px;
  }
  .hero .horizon .gradient {
    bottom: 10px;
    background-size: cover;
  }
}
@media (max-width: 767px) {
  .home #hero {
    margin-bottom: 40px;
  }
  .hero .container {
    margin-top: 40px;
    margin-bottom: -130px;
  }
  .hero .container::before, .hero .container::after {
    height: 150px;
    bottom: 30px;
  }
  .hero .container::before {
    left: 25px;
  }
  .hero .container::after {
    right: 25px;
  }
  .hero .container span::before {
    width: 55%;
    height: 290px;
  }
}
@media (max-width: 575px) {
  .hero .container::before {
    left: 15px;
    bottom: 5px;
  }
  .hero .container::after {
    right: 15px;
    bottom: 5px;
  }
  .hero .container span::before {
    height: 190px;
  }
}
.lead-copy {
  max-width: 800px;
}

.home .main-content section {
  margin-bottom: 200px;
}
.home .main-content h2 {
  margin-bottom: 160px;
}

@media (max-width: 991px) {
  .home .main-content section {
    margin-bottom: 120px;
  }
  .home .main-content h2 {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .home .main-content section {
    margin-bottom: 80px;
  }
}
.home #ideal {
  position: relative;
}
.home #ideal .body {
  position: relative;
  margin-bottom: 80px;
  line-height: 2.75rem;
  font-size: 1.8rem;
}
.home #ideal .body .director {
  max-width: 300px;
  margin: auto;
  margin-bottom: 40px;
}
.home #ideal .body::before, .home #ideal .body:after {
  position: absolute;
  display: block;
  content: "";
  background-position: center top;
  background-size: contain;
  background-repeat: no-repeat;
}
.home #ideal .body::before {
  background-image: url("../images/home/bg-ideal-left.svg");
  top: 0;
  left: 0px;
  width: 170px;
  height: 360px;
}
.home #ideal .body::after {
  background-image: url("../images/home/bg-ideal-right.svg");
  top: -100px;
  right: 0px;
  width: 255px;
  height: 512px;
}
.home #ideal::before {
  position: absolute;
  display: block;
  content: "";
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/home/bg-ideal.svg");
  top: 200px;
  width: 50vw;
  height: 900px;
  max-width: 1000px;
}

@media (max-width: 1199px) {
  .home #ideal {
    overflow: hidden;
  }
  .home #ideal .body::before {
    left: -100px;
  }
  .home #ideal .body::after {
    right: -155px;
  }
}
@media (max-width: 991px) {
  .home #ideal {
    overflow: hidden;
  }
  .home #ideal .body::before {
    left: -130px;
    height: 190px;
  }
  .home #ideal .body::after {
    top: 0px;
    right: -180px;
    height: 256px;
  }
  .home #ideal::before {
    display: none;
  }
}
@media (max-width: 767px) {
  .home #ideal {
    overflow: hidden;
  }
  .home #ideal .body {
    margin-bottom: 40px;
  }
  .home #ideal .body::before {
    top: 50px;
    left: -50px;
    height: 190px;
  }
  .home #ideal .body::after {
    right: -100px;
    height: 256px;
  }
}
@media (max-width: 575px) {
  .home #ideal .body::before, .home #ideal .body::after {
    display: none;
  }
}
.service-list .unit {
  padding: 15px;
  margin-bottom: 15px;
}
.service-list .unit .frame,
.service-list .unit a {
  position: relative;
  display: block;
  transition: all 0.25s ease;
}
.service-list .unit .frame::before,
.service-list .unit a::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 101%;
  background: transparent url("../images/common/img-link-circle.png") center bottom no-repeat;
  top: 0;
  left: 0;
  background-size: 100% 100%;
  z-index: 5;
}
.service-list .unit a span {
  position: absolute;
  z-index: 10;
  width: 100%;
  bottom: -25px;
  left: 0;
}
.service-list .unit a:hover {
  transform: scale(1.05, 1.05);
}

.home #treatments {
  position: relative;
}
.home #treatments .container {
  position: relative;
  z-index: 5;
}
.home #treatments::before, .home #treatments::after {
  position: absolute;
  display: block;
  content: "";
  width: 90%;
  height: 900px;
  top: 200px;
}
.home #treatments::before {
  position: absolute;
  left: 0;
  background: transparent url("../images/home/bg-home-treatments-left.svg") left center no-repeat;
  background-size: contain;
  z-index: 1;
}
.home #treatments::after {
  position: absolute;
  right: 0;
  background: transparent url("../images/home/bg-home-treatments-right.svg") right center no-repeat;
  background-size: contain;
  z-index: 2;
}

@media (max-width: 1199px) {
  .home #treatments::before, .home #treatments::after {
    height: 500px;
  }
}
@media (max-width: 991px) {
  .home #treatments::before, .home #treatments::after {
    display: none;
  }
}
.home #symptoms {
  position: relative;
}
.home #symptoms .container {
  position: relative;
  z-index: 5;
}
.home #symptoms::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 800px;
  top: 200px;
  background: transparent url("../images/home/bg-home-symptoms.jpg") center center no-repeat;
  background-size: contain;
}

@media (max-width: 1199px) {
  .home #symptoms::after {
    height: 600px;
  }
}
@media (max-width: 991px) {
  .home #symptoms::after {
    display: none;
  }
}

#sns-banner {
  margin-top: -50px;
  margin-bottom: 150px;
}  
#sns-banner .container a {
  display: block;
  text-align: center;
  transition: opacity .5s ease;
}
#sns-banner .container a:hover {
  opacity: .7;
}
#sns-banner .container img {
  max-width: 800px;
}
@media (max-width: 991px) {
#sns-banner {
  margin-top: 80px;
  margin-bottom: 50px;
}  
#sns-banner .container img {
    max-width: 100%;
}
}

/* ページ個別：当院について
--------------------------------------------------*/
.badge-director {
  position: relative;
  padding: 15px;
  text-align: center;
}
.badge-director::after {
  position: absolute;
  display: block;
  content: "";
  width: 100px;
  height: 100px;
  bottom: -20px;
  right: -20px;
  background: transparent url("../images/common/img-director-illust.png") center center no-repeat;
  background-size: contain;
}

.director-name {
  text-align: right;
}
.director-name span {
  display: inline-block;
  font-size: 3rem;
  margin-left: 1rem;
}

@media (max-width: 767px) {
  .badge-director::after {
    right: 5px;
    bottom: 5px;
  }
}
table.price td {
  font-size: 3rem;
}
table.price td span {
  display: inline-block;
  font-size: 2rem;
}
table.price td span.hyphen {
  margin: 0 0.5rem;
}
table.price td span.yen {
  margin-left: 0.5rem;
}

@media (max-width: 767px) {
  table.price td {
    font-size: 2rem;
    line-height: 2rem;
  }
  table.price td span {
    font-size: 1.25rem;
  }
  table.price td span.hyphen {
    margin: 0 0.25rem;
  }
  table.price td span.yen {
    margin-left: 0.25rem;
  }
}
ol.step {
  padding-left: 0;
}
ol.step li {
  list-style: none;
  position: relative;
}
ol.step li .box {
  position: relative;
  display: block;
  background-color: #93c12a;
  border-radius: 7.5px;
  padding: 1.5rem 15px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 2.4rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 600;
}
ol.step li .box .number {
  display: inline-block;
  color: #93c12a;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 0 10px;
  margin-right: 0.5rem;
}
ol.step li::before {
  position: relative;
  display: block;
  content: "";
  width: 100%;
  height: 300px;
  background-color: gray;
  margin-left: auto;
  margin-right: auto;
  background-position: center center;
  background-size: cover;
}
ol.step li:nth-child(1)::before {
  background-image: url("../images/about/img-step-1.jpg");
  border-radius: 45% 50% 47% 38%;
}
ol.step li:nth-child(2)::before {
  background-image: url("../images/about/img-step-2.jpg");
  border-radius: 38% 45% 50% 47%;
}
ol.step li:nth-child(3)::before {
  background-image: url("../images/about/img-step-3.jpg");
  border-radius: 47% 38% 45% 50%;
}
ol.step li:nth-child(4)::before {
  background-image: url("../images/about/img-step-4.jpg");
  border-radius: 50% 47% 38% 45%;
}

@media (max-width: 1199px) {
  ol.step li::before {
    height: 200px;
  }
}
@media (max-width: 991px) {
  ol.step li::before {
    height: 300px;
  }
}
@media (max-width: 767px) {
  ol.step li::before {
    height: 40vw;
  }
}
@media (max-width: 375px) {
  ol.step li {
    width: 100%;
  }
  ol.step li::before {
    height: 90vw;
  }
}
/* ページ個別：アクセス
--------------------------------------------------*/
.map {
  margin-bottom: 80px;
}
.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
}

@media (max-width: 575px) {
  .map iframe {
    aspect-ratio: 16/16;
  }
}

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