@charset "UTF-8";

/*-変数定義 font
------------------------------*/
/*--------------------------
font-size
---------------------------*/
/*行間計算*/
/*--------------------------
content-width
---------------------------*/
/* ----------------------------------------
header pc
---------------------------------------- */
.header {
  position: relative;
  width: 100%;
  top: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
}

@media screen and (max-width: 1000px) {
  .header {
    height: 2.625rem;
    position: fixed;
  }
}

.header__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1000px) {
  .header__inner {
    padding-top: 0rem;
    padding-bottom: 0rem;
    padding-left: 0;
    padding-right: 4.625rem;
  }
}

.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .header__nav-wrap {
    width: auto;
  }
}

.header__nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.header__nav-link-bg {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(196, 184, 150)), to(rgb(126, 101, 1)));
  background: linear-gradient(180deg, rgb(196, 184, 150) 0%, rgb(126, 101, 1) 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 clamp(200px, 20vw, 280px);
  flex: 0 1 clamp(200px, 20vw, 280px);
  font-size: clamp(12px, 1vw, 16px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width: 1000px) {
  .header__nav-link-bg {
    display: none;
  }
}

.header__nav-link-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#a6987a), to(#a6987a));
  background: linear-gradient(90deg, #a6987a 0%, #a6987a 100%);
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
}

.header__nav-link-bg:hover::after {
  width: 100%;
}

.header__nav-link-bg::before {
  content: "";
  background-image: url(../img/common/header-seach-icon.webp);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-right: 5px;
}

.header__logo {
  padding: 16px;
  padding: 1rem;
}

@media screen and (max-width: 1000px) {
  .header__logo {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.header__logo-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo-item {
  width: 100%;
  max-width: clamp(200px, 30vw, 400px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1000px) {
  .header__logo-item {
    max-width: 14.125rem;
  }
}

@media screen and (max-width: 480px) {
  .header__logo-item {
    max-width: 13.125rem;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.header__nav-item a {
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.4444444444;
  margin-right: clamp(10px, 2.22vw, 32px);
  white-space: nowrap;
  color: #8a7340;
}

.header__nav-button-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  background: linear-gradient(125deg, rgb(238, 117, 18) 0%, rgb(254, 192, 64) 100%, rgb(228, 162, 26) 100%);
  color: #fff;
  padding: 14px 10px;
  padding: 0.875rem 0.625rem;
  border-radius: 0.1875rem;
}

.header__nav-item-top {
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-sp__list-wrap {
  display: block;
}

.header-sp__list-wrap-top {
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
  padding-bottom: 34px;
  padding-bottom: 2.125rem;
}

.header-sp__list-item {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.header-sp__list-item:last-child {
  margin-bottom: 0;
}

.header-sp__list-item-link:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #3D3D3D;
  border-right: solid 1px #3D3D3D;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 4px;
}

#g-nav-sp-list .footer__list-item-link:hover {
  color: inherit;
  text-decoration: none;
}

.header-sp__list-item-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #3D3D3D;
  line-height: 1;
  position: absolute;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  -webkit-transform: translateX(30%) rotate(45deg);
  transform: translateX(30%) rotate(45deg);
  margin-right: 12px;
  margin-right: 0.75rem;
  bottom: 2px;
  left: 0;
  top: 4px;
  top: 0.25rem;
}

.header-sp__list-item-arrow::before,
.header-sp__list-item-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.header-sp__list-item-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.header-sp__list-item-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}

.header-sp__list-wrap-bottom .header-sp__list-item {
  padding-left: 0;
}

.header-sp-button {
  margin-top: 40px;
  margin-top: 2.5rem;
}

#header.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/
#header.DownMove {
  position: fixed;
  width: 100%;
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

#header {
  text-align: center;
  background: #7e6501;
}

#header.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
/*   background: rgba(255, 255, 255, .8); */
}

#header.fixed .header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 1000px) {
  #header.fixed .header__nav-wrap {
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#header.fixed .header__nav-list {
  padding-top: 0px;
  padding-top: 0rem;
}

.header.fixed .header__logo-flex-left {
  display: none;
}

@media screen and (max-width: 1000px) {
  .header.fixed .header__logo-flex-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header.fixed .header__logo-flex-right {
  position: fixed;
  bottom: 37px;
  right: 0px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  .header.fixed .header__logo-flex-right {
    display: none;
  }
}

.header.fixed .header__logo-flex-right-link {
  font-size: 0;
  padding: 30px;
}

.header.fixed .header__logo-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__logo-group-title {
  font-size: 14px;
  color: #554C36;
  padding: 16px;
  padding: 1rem;
}

@media screen and (max-width: 1000px) {
  .header__logo-group-title {
    padding: 0 0 0 1.25rem;
  }
}

.header.fixed .header__nav-opacity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* ----------------------------------------
Mv
---------------------------------------- */
#g-nav-sp.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  background: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
}

.circle-bg.circleactive {
  opacity: 1;
  pointer-events: auto;
}

#g-nav-sp-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  padding: 80px 25px 60px;
  padding: 5rem 1.5625rem 3.75rem;
}

#g-nav-sp.panelactive #g-nav-sp-list {
  display: block;
  background-color: #7e6501;
}

/*ナビゲーション*/
#g-nav-sp ul.g-nav-sp__wrap {
  opacity: 0;
  position: relative;
  z-index: 999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-top: 100px;
  padding-top: 6.25rem;
}

@media screen and (max-width: 1000px) {
  #g-nav-sp ul.g-nav-sp__wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
    height: auto;
    height: initial;
    max-width: 41.25rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    margin-left: auto;
    margin-right: auto;
  }
}

#g-nav-sp.panelactive ul.g-nav-sp__wrap {
  -webkit-animation-name: gnaviAnime;
  animation-name: gnaviAnime;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.g-nav-sp__item {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(225, 143, 119, .5);
  list-style: none;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.g-nav-sp__item:first-child {
  padding-top: 0;
}

.g-nav-sp__item-link {
  color: #554C36;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  .g-nav-sp__item-link {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
    font-family: "Zen Old Mincho", serif;
  }
}

.openbtn1 {
  position: fixed;
  top: 5px;
  top: 0.3125rem;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  width: 42px;
  height: 42px;
  background: #686868;
  display: none;
}

@media screen and (max-width: 1000px) {
  .openbtn1 {
    display: block;
    top: 0;
    right: 0;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 12px;
  height: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 13px;
}

.openbtn1 span:nth-of-type(2) {
  top: 21px;
}

.openbtn1 span:nth-of-type(3) {
  top: 29px;
}

.openbtn1.active {
  background: #686868;
}

.openbtn1.active span:nth-of-type(1) {
  background-color: #fff;
  top: 14px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  background-color: #fff;
  top: 26px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .top-common__title-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .cpt-contact__inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .cpt-contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 37.5rem;
  }
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .cpt-contact__flex-body {
    margin-right: 0;
    padding-bottom: 2.125rem;
  }
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .cpt-contact__flex-body:after {
    content: none;
  }
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .cpt-contact__flex-button-link-img img {
    width: 2.0625rem;
  }
}

@media screen and (max-width: 1000px) {
  .header-cpt-contact .cpt-contact__flex-button-link {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.top-common__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
/*   align-items: center; */
}

.top-common__head-title-en {
/*   font-family: "Julius Sans One"; */
  font-family: serif;
  color: #7e6501;
  font-size: min(2.7vw, 40px);
  line-height: 1.5;
  text-transform: uppercase;
/*   background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(45%, #f3efe6)); */
/*   background: linear-gradient(transparent 55%, #f3efe6 45%); */
  letter-spacing: 0.02em;
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  text-align: left;
}

@media screen and (max-width:767px) {
  .top-common__head-title-en {
    font-size: 2.1875rem;
	  text-align: center;
  }
}

.top-common__head-title-en--bg-pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55%, transparent), color-stop(45%, #FFF1EF));
  background: linear-gradient(transparent 55%, #FFF1EF 45%);
}

.top-common__head-title {
/*   color: ##7e6501; */
	font-family: serif;
  color: #7e6501;
	font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  letter-spacing: 0.05em;
	
  padding-left: 15px;
  padding-left: 0.9375rem;
}

@media screen and (max-width:767px) {
  .top-common__head-title {
    padding-top: 0rem;
    font-size: 1.25rem;
	  text-align: center;
  }
}

.top-button-blue {
  max-width: 310px;
  max-width: 19.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 36px;
  text-align: center;
  margin: auto;
  background: #7e6501;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 3px 1px #5a4a01;
  box-shadow: 0px 3px 1px #5a4a01;
  padding: 15px 10px 10px;
  padding: 0.9375rem 0.625rem 0.625rem;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
}

@media screen and (max-width:767px) {
  .top-button-blue {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem 0.625rem;
  }
}

.top-button-blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #a6987a;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
}

.top-button-blue:hover::after {
  width: 100%;
}

.top-button-blue:hover {
  -webkit-box-shadow: 0px 3px 1px #a6987a;
  box-shadow: 0px 3px 1px #a6987a;
}

.top-button-blue::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: 10px;
  right: 0.625rem;
}

/* ----------------------------------------
Footer
---------------------------------------- */
.footer {
  background: #f8f5ef;
}

.footer__inner {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 170px;
  padding-bottom: 10.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

@media screen and (max-width:767px) {
  .footer__inner {
    padding-top: 3.125rem;
    padding-bottom: 4.0625rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.pagetop {
  cursor: pointer;
  position: fixed;
  right: 0px;
  bottom: 38px;
  bottom: 2.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 42px;
  width: 2.625rem;
  height: 42px;
  height: 2.625rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: rgba(136, 136, 136, .8);
  opacity: 1;
  display: none;
  z-index: 99;
}

@media screen and (max-width:767px) {
  .pagetop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pagetop-up {
  display: inline-block;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 6px;
  border-width: 0.625rem 0.375rem;
  border-bottom-color: currentColor;
  border-top: 0;
}

.footer__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 760px;
  max-width: 47.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:767px) {
  .footer__logo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2.1875rem;
  }
}

.footer__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 48%;
  flex: 0 1 48%;
}

@media screen and (max-width:767px) {
  .footer__logo {
    max-width: 13.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__logo-wrap-button.latest-cpt__body-button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
  display: none;
}

@media screen and (max-width:767px) {
  .footer__logo-wrap-button.latest-cpt__body-button {
    margin-top: 1.875rem;
    display:none;
  }
}

.footer__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width:767px) {
  .footer__list-wrap {
    gap: 4%;
  }
}

.footer__list-first {
  width: 20%;
}

@media screen and (max-width:767px) {
  .footer__list-first {
    width: 48%;
  }
}

.footer__list-second {
  width: 50%;
  margin-left: 5%;
  margin-right: 5%;
  position: relative;
}

@media screen and (max-width:767px) {
  .footer__list-second {
    width: 100%;
    border-bottom: 1px solid #3d3d3d;
    padding-bottom: 2.5rem;
    margin-left: 0;
    margin-right: 0;
  }
}

.footer__list-second:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #3D3D3D;
  left: -10%;
}

@media screen and (max-width:767px) {
  .footer__list-second:before {
    content: none;
  }
}

.footer__list-second:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #3D3D3D;
  right: 2%;
}

@media screen and (max-width:767px) {
  .footer__list-second:after {
    content: none;
  }
}

.footer__list-second--pc {
  display: block;
}

@media screen and (max-width:767px) {
  .footer__list-second--pc {
    display: none;
  }
}

.footer__list-second--sp {
  display: none;
}

@media screen and (max-width:767px) {
  .footer__list-second--sp {
    display: block;
  }
}

.footer__list-second-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2%;
}

@media screen and (max-width:767px) {
  .footer__list-second-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.125rem 2%;
  }
}

.footer__list-third {
  width: 20%;
}

@media screen and (max-width:767px) {
  .footer__list-third {
    width: 48%;
  }
}

.footer__list-item {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.footer__list-item-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__list-item-link:hover {
  color: #7e6501;
  text-decoration: underline;
}

.footer__list-item:last-child {
  padding-bottom: 0px;
  padding-bottom: 0rem;
}

.footer__list-title {
  font-weight: bold;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.footer__list-second-item .footer__list-item:before {
  content: "-";
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.footer__list-second-item .footer__list-item:hover:before {
  color: #7e6501;
}

.copyright {
  width: 100%;
  background: #d4c9b0;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  padding: 10px;
  padding: 0.625rem;
}

@media screen and (max-width: 767px){
	.copyright {
		padding-bottom: 20vw;
	}	
}

@font-face {
  font-family: "Noto Sans JP", sans-serif;
  src: url("../fonts/NotoSansJP-Regular.ttf");
}

@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  src: url("../fonts/NotoSansJP-SemiBold.ttf");
}

@font-face {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf");
}

@font-face {
  font-family: "Julius Sans One";
  src: url("../fonts/JuliusSansOne-Regular.ttf") format('truetype');
  font-weight: normal;  
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif JP", serif;
  src: url("../fonts/NotoSerifJP-Regular.ttf");
}

@font-face {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  src: url("../fonts/NotoSerifJP-Bold.ttf");
}

body,
* {
  text-align: justify;
}

body {
  font-family: serif;
  color: #3D3D3D;
}

main.is-page {
  padding-top: 48px;
}

@media screen and (max-width:767px) {
  main.is-page {
    padding-top: 47px;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*--container
------------------------------*/
.top-container{
	width: 100%;
	max-width: 1440px;
	margin-right: auto;
	margin-left: auto;
}

.container {
  max-width: 1000px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container02 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container03 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container04 {
  max-width: 1200px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.container05 {
  max-width: 820px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.container06 {
  max-width: 880px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.container07 {
  max-width: 900px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.child-container {
  max-width: 800px;
  width: calc(100% - 120px);
}

@media screen and (max-width:767px) {
  .child-container {
    width: 100%;
  }
}

.child-container02 {
  max-width: 684px;
  width: calc(100% - 120px);
}

@media screen and (max-width:767px) {
  .child-container02 {
    width: 100%;
  }
}

@media screen and (max-width:767px) {
  .sp-container {
    width: 84%;
    margin: 0 auto;
  }
  .container {
  width: 95%;
  }
}

/*--container
------------------------------*/
.is-front .container {
  max-width: 1000px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.is-front .container02 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.is-front .container03 {
  max-width: 1080px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.is-front .container04 {
  max-width: 1200px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.is-front .container05 {
  max-width: 820px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.is-front .container06 {
  max-width: 880px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.is-front .container07 {
  max-width: 900px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.is-front .child-container {
  max-width: 800px;
  width: calc(100% - 120px);
}

@media screen and (max-width:767px) {
  .is-front .child-container {
    width: 100%;
  }
}

.is-front .child-container02 {
  max-width: 684px;
  width: calc(100% - 120px);
}

@media screen and (max-width:767px) {
  .is-front .child-container02 {
    width: 100%;
  }
}

@media screen and (max-width:767px) {
  .is-front .sp-container {
    width: 84%;
    margin: 0 auto;
  }
}

/*--section__title
------------------------------*/
.section__title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.4em;
  font-weight: 500;
  z-index: 5;
  position: relative;
}

@media screen and (max-width:767px) {
  .section__title {
    font-size: 1.125rem;
  }
}

.section__title span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-left: 4px;
}

@media screen and (max-width:767px) {
  .section__title span {
    font-size: 0.8125rem;
    margin-left: 2px;
    letter-spacing: 0.3em;
  }
}

.br__pc {
  display: block;
}

@media screen and (max-width:767px) {
  .br__pc {
    display: none;
  }
}

/* ----------------------------------------
page base
---------------------------------------- */
.is-page {
  background: #F5F5F0;
}

.page__section:not(:last-of-type) {
  padding-top: 148px;
}

@media screen and (max-width:767px) {
  .page__section:not(:last-of-type) {
    padding-top: 80px;
  }
}

.page__section:last-of-type {
  padding-top: 148px;
  padding-bottom: 160px;
}

@media screen and (max-width:767px) {
  .page__section:last-of-type {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

/* ----------------------------------------
page mv
---------------------------------------- */
.mv__wrap .container:not(.breadcrumbs) {
  padding: 100px 0;
}

@media screen and (max-width:767px) {
  .mv__wrap .container:not(.breadcrumbs) {
    padding: 60px 0 80px;
    width: 100%;
  }
}

.mv__wrap .container .page__top-title,
.is-404 h1 {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.35em;
  line-height: 1.5;
}

@media screen and (max-width:767px) {

  .mv__wrap .container .page__top-title,
  .is-404 h1 {
    font-size: 1.125rem;
  }
}

/* ----------------------------------------
breadcrumbs
---------------------------------------- */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 21px;
  padding-top: 1.3125rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

@media screen and (max-width:767px) {
  .breadcrumb {
    padding-bottom: 2.5rem;
  }
}

.breadcrumb__item {
  color: #474747;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb__item::after {
  content: ">";
  padding-left: 7px;
  padding-left: 0.4375rem;
  padding-right: 7px;
  padding-right: 0.4375rem;
}

.breadcrumb__item:last-child::after {
  content: none;
}

/* ----------------------------------------
page title
---------------------------------------- */
.top-h2-group {
  display: flex;
  flex-direction: column-reverse; /* テキストの方向とは逆向き（縦向き）を逆順に */
/*   font-family: "Scope One", serif; */
	font-family: serif;
}

.top-h2-group h2.top-h2-title {
  font-size: min(1.6vw, 24px);
  line-height: 1.5;
	color: #a6987a;
}

.top-h2-group p.top-h2-sub-title {
  color: #7e6501;
  font-size: min(2.7vw, 40px);
  line-height: 1.5;
  text-transform: uppercase; /* すべて大文字 */
}

@media screen and (max-width: 767px){
	.top-h2-group h2.top-h2-title{
		font-size: 4vw;
	}
	
	.top-h2-group p.top-h2-sub-title{
		font-size: 9vw;
	}
}

/* ----------------------------------------
last
---------------------------------------- */
.sp-flex,
.sp-block,
.sp-inline {
  display: none !important;
}

@media screen and (max-width:767px) {
  .sp-hide {
    display: none !important;
  }

  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp-block {
    display: block !important;
  }

  .sp-inline {
    display: inline !important;
  }
}

.pc-hide {
  display: none;
}

@media screen and (max-width:767px) {
  .pc-hide {
    display: block;
  }
}



/* ----------------------------------------
top-image
---------------------------------------- */
#top-image{
	width: 100vw;
	height: 43.2vw;
	background-image: url("../img/common/main-2.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#top-image .top-image-header{
	width: 90%;
	max-width: 1280px;
	height: 4.86vw;
	max-height: 70px;
	display: flex;
	justify-content: space-between;
	margin: min(4.44vw, 64px) auto;
	background-color: #fff;
	border-radius: 8px;
	line-height: min(4.86vw, 70px);
}

#top-image .clinic-logo{
	width: 14.4vw;
	height: 2.43vw;
	max-width: 208px;
	max-height: 35px;
}




.hero {
  position: relative;
  overflow: hidden;
	padding-top: 56px;
}

@media screen and (max-width: 1000px) {
.hero {
	padding-top:  42px;
  }
#top-image{
  background-image: url("../img/common/sp_ver1.png");
  height: 175vw;
  background-size: cover;
}
}

.hero__picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 0;
  min-height: 558px;
  max-height: 558px;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .hero__picture {
    min-height: 629px;
    max-height: 629px;
  }
}

.hero__picture img {
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__body {
  position: absolute;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

@media screen and (max-width:767px) {
  .hero__body {
    left: inherit;
    top: inherit;
    -webkit-transform: inherit;
    transform: inherit;
    bottom: 0.625rem;
  }
}

.hero__body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 2;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="10" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(255,255,255,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 10px #FFF);
  filter: drop-shadow(0 0 10px #FFF);
}

@media screen and (max-width:767px) {
  .hero__body-text {
    text-align: center;
  }
}

.hero__body-text span {
  text-shadow: 0 0 14px #FFF;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(255,255,255,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 5px #FFF);
  filter: drop-shadow(0 0 5px #FFF);
  font-size: 46px;
  color: #5a4a01;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2631578947;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  z-index: 2;
}

@media screen and (max-width:767px) {
  .hero__body-text span {
    font-size: clamp(37px, 7.9vw, 37px);
    text-align: center;
    width: 100%;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

span.hero__body-text-second {
  font-size: 35px;
  color: #5a4a01;
  padding-top: 10px;
  padding-top: 0.625rem;
}

@media screen and (max-width:767px) {
  span.hero__body-text-second {
    font-size: 1.3125rem;
  }
}

.hero__bottom-title-wrap {
  background: #fff;
  border-radius: 6.25rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: -20px;
  margin-top: -1.25rem;
}

.hero__body-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width:767px) {
  .hero__body-grid {
    gap: 0.625rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.hero__body-grid-item {
  width: 142px;
  width: 8.875rem;
  height: 142px;
  height: 8.875rem;
  background-image: url("../img/front/hero-grid-bg.webp");
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="16" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(56,141,159,0.6)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 0px 16px rgba(56, 141, 159, .6));
  filter: drop-shadow(0px 0px 16px rgba(56, 141, 159, .6));
  color: #7e6501;
  font-size: 21px;
  font-size: 1.3125rem;
  text-align: center;
  padding: 10px;
  padding: 0.625rem;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .hero__body-grid-item {
    width: 6rem;
    height: 6rem;
    font-size: 0.8125rem;
    aspect-ratio: 1/1;
  }
}

.hero__body-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* .campaign {
  background-image: url(../img/front/img-campaign-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
} */

.btn-container{
	text-align: center;
}

.campaign__head-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
/*   align-items: center; */
  color: #3D3D3D;
  padding-top: 0;
  padding-top: 0;
  padding-bottom: 42px;
  padding-bottom: 2.625rem;
  position: relative;
}

@media screen and (max-width:767px) {
  .campaign__head-wrap {
    padding-top: 2.8125rem;
  }
	.campaign{
		margin-top: -32vw;
	}
}

.campaign__head-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  max-width: 200px;
  max-width: 12.5rem;
  margin-right: 450px;
  margin-right: 28.125rem;
  width: 100%;
}

@media screen and (max-width:767px) {
  .campaign__head-badge {
    display: none;
  }
}

.campaign__head {
  text-align: center;
}

.campaign__swiper-wrap .swiper-pagination {
  bottom: -15px;
  bottom: -0.9375rem;
  top: auto;
  top: initial;
}

.campaign .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.campaign .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 5px;
  margin: 0 0.3125rem 0.3125rem;
}

@media screen and (max-width:767px) {

  .campaign .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .campaign .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.25rem 0.3125rem;
  }
}

.campaign .swiper-pagination-bullet {
  background-color: #c4b896;
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}

@media screen and (max-width:767px) {
  .campaign .swiper-pagination-bullet {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.campaign .swiper-slide {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.campaign .swiper-slide img {
  height: auto;
  width: 100%;
  aspect-ratio: 100/56;
  -o-object-fit: cover;
  object-fit: cover;
/*   border-radius: 0.625rem; */
}

.campaign .campaign__swiper {
  display: none;
  border-radius: 0.625rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  margin-top: -20px;
  margin-top: -1.25rem;
}

@media screen and (max-width:767px) {
  .campaign .campaign__swiper {
    padding-top: 0rem;
  }
}

.campaign .campaign__swiper.swiper-initialized {
  display: block;
}

.campaign__inner {
  max-width: 1115px;
  max-width: 69.6875rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}

.campaign__swiper-wrap {
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-right: 60px;
  padding-right: 3.75rem;
  position: relative;
}

@media screen and (max-width:767px) {
  .campaign__swiper-wrap {
    padding-left: 4.25rem;
    padding-right: 4.25rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.campaign__swiper-wrap .swiper-button-prev.swiper-button-black {
  width: 40px;
  width: 1.5rem;
  z-index: 1;
}

@media screen and (max-width:767px) {
  .campaign__swiper-wrap .swiper-button-prev.swiper-button-black {
    width: 1.625rem;
    left: 1.625rem;
  }
}
@media (max-width: 767px) {
  .campaign .campaign__swiper { 
    display: block;              /* 破棄後も見えるように */
  }
  .campaign .swiper-wrapper {
    display: block;              /* Flex解除で縦並び */
  }
  .campaign .swiper-slide {
    width: 100% !important;
    margin-bottom: 1rem;
    transform: none !important;  /* ホバー浮き上がり無効化（任意） */
  }
	.swiper-button-prev, .swiper-button-next{
		display: none;
	}
	.campaign__swiper-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


.campaign__swiper-wrap .swiper-button-prev.swiper-button-black:after {
  display: none;
}

.campaign__swiper-wrap .swiper-button-next.swiper-button-white {
  width: 40px;
  width: 1.5rem;
  z-index: 1;
}

@media screen and (max-width:767px) {
  .campaign__swiper-wrap .swiper-button-next.swiper-button-white {
    width: 1.625rem;
    right: 1.625rem;
  }
}

.campaign__swiper-wrap .swiper-button-next.swiper-button-white:after {
  display: none;
}

.campaign__swiper-wrap .swiper-wrapper .swiper-slide:hover {
  -webkit-transform: translate(0, -28.5px);
  transform: translate(0, -28.5px);
}

@media screen and (max-width:767px) {
  .campaign__swiper-wrap .swiper-wrapper .swiper-slide:hover {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

/* ----------------------------------------
cpt
---------------------------------------- */
.latest-cpt-bg {
  position: relative;
  padding-top: 60px;
}

@media screen and (max-width:767px) {
  .latest-cpt-bg {
    background-image: url(../img/front/cta-bottom-bg-sp.webp);
    padding-bottom: 100px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 3.125rem 1.875rem;
    background-size: 100% 100%;
  }
}

.latest-cpt-bg:after {
  content: "";
  background-color: #fff;
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  width: 110vw;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0%;
  padding-bottom: 100px;
  margin-left: calc(-44vw + 50%);
  padding-top: 100px;
  left: 0;
}

.latest-cpt {
  background-image: url(../img/front/ctp-bg.webp);
  background-size: cover;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
  margin-left: -20px;
  margin-left: -1.25rem;
  margin-right: -20px;
  margin-right: -1.25rem;
}

@media screen and (max-width: 1200px) {
  .latest-cpt {
    margin-left: 0rem;
  }
}

@media screen and (max-width:767px) {
  .latest-cpt {
    margin-right: 0rem;
    background-image: none;
    padding: 0.625rem;
  }
}

.latest-cpt__inner {
  background-image: url(../img/front/img-cta-main.webp);
  background-size: cover;
  background-position: center;
  padding: 90px 30px 30px;
  padding: 5.625rem 1.875rem 1.875rem;
}

@media screen and (max-width:767px) {
  .latest-cpt__inner {
    background-image: url(../img/front/img-cta-main-sp.webp);
    aspect-ratio: 308/368;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 40% 1.875rem 1.875rem;
  }
}

.latest-cpt__body {
  max-width: 500px;
  max-width: 31.25rem;
  margin-left: auto;
  margin-right: auto;
}

.latest-cpt__body-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 5px #5a4a01;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width:767px) {
  .latest-cpt__body-title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.latest-cpt__body-title {
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
}

.latest-cpt__body-title-bottom {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}

@media screen and (max-width:767px) {
  .latest-cpt__body-title-bottom {
    padding-left: 0rem;
    padding-top: 0.625rem;
  }
}

.latest-cpt__body-button {
  color: #fff;
  font-weight: bold;
  text-align: center;
  max-width: 370px;
  max-width: 23.125rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-shadow: 0 2px 4px #7e6501;
  border-radius: 0.625rem;
  padding: 16px;
  padding: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#a6987a), color-stop(50%, #8a7340), to(#c4b896));
  background: linear-gradient(180deg, #a6987a 0%, #8a7340 50%, #c4b896 100%);
  color: #fff;
  -webkit-box-shadow: 1px 3px 6px #5a4a01;
  box-shadow: 1px 3px 6px #5a4a01;
  border: 2px solid #fff;
}

.latest-cpt__body-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#d4c9b0), color-stop(50%, #c4b896), to(#a6987a));
  background: linear-gradient(180deg, #d4c9b0 0%, #c4b896 50%, #a6987a 100%);
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
}

.latest-cpt__body-button:hover::after {
  width: 100%;
}

.latest-cpt__body-button:hover {
  -webkit-box-shadow: 1px 3px 6px transparent;
  box-shadow: 1px 3px 6px transparent;
  opacity: 1;
}

.latest-cpt__body-button-top {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.0625;
  text-align: center;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

@media screen and (max-width:767px) {
  .latest-cpt__body-button-top {
    font-size: 0.8125rem;
  }
}

.latest-cpt__body-button-bottom {
  font-size: 30px;
  font-size: 1.875rem;
  text-align: center;
  position: relative;
  width: 100%;
}

@media screen and (max-width:767px) {
  .latest-cpt__body-button-bottom {
    font-size: 1.375rem;
  }
}

.latest-cpt__body-button-bottom::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 8px 10px;
  border-width: 0.5rem 0.625rem;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: 10px;
  right: 0.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="3" /><feOffset dx="1" dy="3" result="offsetblur" /><feFlood flood-color="rgba(0,163,144,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0px 2px 3px #7e6501);
  filter: drop-shadow(0px 2px 3px #7e6501);
}

.latest-cpt__body-button--sp {
  display: none;
}

@media screen and (max-width:767px) {
  .latest-cpt__body-button--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width:767px) {
  .latest-cpt__body-button--pc {
    display: none;
  }
}

.latest-cpt__badge {
  max-width: 216px;
  max-width: 13.5rem;
  right: -50px;
  right: -3.125rem;
  top: -50px;
  top: -3.125rem;
  position: absolute;
}

@media screen and (max-width:767px) {
  .latest-cpt__badge {
    max-width: 8.125rem;
    right: -1.25rem;
    top: -1.25rem;
  }
}

/* ----------------------------------------
lastest-supervision
---------------------------------------- */
.lastest-supervision__bg {
  position: relative;
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.lastest-supervision__bg:after {
  content: "";
  background-color: #fff;
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  width: 110vw;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0%;
  padding-bottom: 100px;
  margin-left: calc(-44vw + 50%);
  padding-top: 100px;
  left: 0;
}

/* .lastest-supervision {
  padding: 20px;
  padding: 1.25rem;
  background-image: url(../img/front/person-bg.webp);
  background-size: cover;
  background-position: center;
  margin-left: -20px;
  margin-left: -1.25rem;
  margin-right: -20px;
  margin-right: -1.25rem;
} */

/* @media screen and (max-width: 1200px) {
  .lastest-supervision {
    margin-left: 0rem;
  }
}

@media screen and (max-width:767px) {
  .lastest-supervision {
    background-image: url(../img/front/person-bg-sp.webp);
    margin-left: 0rem;
    margin-right: 0rem;
  }
} */

.lastest-supervision__inner {
  padding: 35px;
/*   padding: 3.125rem 2.1875rem; */
  background: #fff;
  border: 1px solid #7e6501;
/*   border-radius: 0rem 1.25rem 0rem 1.25rem; */
}

@media screen and (max-width:767px) {
  .lastest-supervision__inner {
    padding: 3.125rem 1.25rem;
  }
}

.lastest-supervision__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width:767px) {
  .lastest-supervision__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding-top: 1.875rem;
  }
}

.lastest-supervision__flex-img-wrap {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 28%;
  flex: 0 1 28%;
  margin-right: 25px;
/*   margin-right: 3.5rem; */
  position: relative;
}

@media screen and (max-width:767px) {
  .lastest-supervision__flex-img-wrap {
    margin-right: 0rem;
  }
}

.lastest-supervision__flex-img {
  position: relative;
}

.lastest-supervision__flex-img img{
	max-width: none !important;
    width: 200px;
    height: 200px !important;
	object-fit: cover;
}

/* .lastest-supervision__flex-img:after {
  content: "";
  width: 1px;
  height: 110%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: -5%;
  right: -28px;
  background: #8a7340;
  position: absolute;
}

@media screen and (max-width:767px) {
  .lastest-supervision__flex-img:after {
    content: none;
  }
} */
/* 
.lastest-supervision__flex-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
} */

@media screen and (max-width:767px) {
  .lastest-supervision__flex-body {
    padding-top: 1.875rem;
  }
}

.lastest-supervision__flex-body-title {
    font-size: 20px;
	line-height: 20px;
    padding-bottom: 10px;
    font-weight: bold;
    border-bottom: 1px solid #7e6501;
    margin-bottom: 25px;
	position: relative;
}

.lastest-supervision__flex-body-title::before{
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url("/wp-admin/images/module-icon-pen.png");
	background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 10px;
    left: 13px;
}

/* @media screen and (max-width:767px) {
  .lastest-supervision__flex-body-title {
    border-bottom: 1px solid #8a7340;
  }
} */

.lastest-supervision__flex-body-title--pc {
  display: block;
}

@media screen and (max-width:767px) {
  .lastest-supervision__flex-body-title--pc {
    display: none;
  }
	
	.lastest-supervision__flex-body-title{
		padding-left: 0;
	}
}

.lastest-supervision__flex-body-title--sp {
  display: none;
}

@media screen and (max-width:767px) {
  .lastest-supervision__flex-body-title--sp {
    display: block;
  }
}
.lastest-supervision__flex-body-clinic{
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
}
.lastest-supervision__flex-body-name{
	font-size: 18px;
	margin-bottom: 10px;
}
.lastest-supervision__flex-body-info{
	font-size: 14px;
	margin-bottom: 5px;
}
.lastest-supervision__flex-body-text {
  font-size: 14px;
  letter-spacing: .1em;
  line-height: 1.6;
}

a.lastest-supervision__flex-body-button{
	margin-right: 0;
	text-decoration: underline !important;
}

.lastest-supervision-box{
	text-align: right;
	font-family: var(--single-font-gothic);
	font-size: 15px;
	margin-top: 20px;
}

.lastest-supervision__flex-body-button.top-button-blue {
  max-width: 160px;
  max-width: 10rem;
  border-radius: 0;
  margin-right: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  -webkit-box-shadow: 0 0 0 transparent;
  box-shadow: 0 0 0 transparent;
}

@media screen and (max-width:767px) {
  .lastest-supervision__flex-body-button.top-button-blue {
    margin-right: auto;
    max-width: 12.5rem;
  }
	.lastest-supervision-box{
		font-size: 12px;
	}
}

.lastest-supervision__flex-body-button.top-button-blue:hover {
  opacity: 1;
}

/* ----------------------------------------
latest-category
---------------------------------------- */
.latest-category {
  position: relative;
	display: none;
}

@media screen and (max-width:767px) {
  .latest-category {
    padding-top: 1.25rem;
  }
}

.latest-category:after {
  content: "";
  background-color: #fff;
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  width: 110vw;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0%;
  padding-bottom: 100px;
  margin-left: calc(-44vw + 50%);
  padding-top: 100px;
  left: 0;
}

.latest-category__bg {
  position: relative;
  padding: 60px 0px;
  padding: 3.75rem 0rem;
}

@media screen and (max-width: 1200px) {
  .latest-category__bg {
    padding: 3.75rem 1.875rem;
  }
}

.latest-category__bg:after {
  content: "";
  background-image: url(../img/front/img-latest-category-bg.webp);
  height: 100%;
  width: 120%;
  background-size: 100% 100%;
  position: absolute;
  left: -10%;
  top: 0;
  z-index: -1;
}

@media screen and (max-width: 1200px) {
  .latest-category__bg:after {
    width: 100%;
    left: 0%;
  }
}

.latest-category__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  gap: 1.5rem;
  margin-top: 24px;
  margin-top: 1.5rem;
}

@media screen and (max-width:767px) {
  .latest-category__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.25rem;
  }
}

.latest-category__grid .latest__flex-sidebar-item {
  margin-bottom: 0;
}

/* ----------------------------------------
latest-clinic-list
---------------------------------------- */
.latest-clinic-list {
  position: relative;
}

.latest-clinic-list__inner {
  padding-top: 60px;
  padding-top: 3.75rem;
}

@media screen and (max-width:767px) {
  .latest-clinic-list__inner {
    padding-bottom: 0rem;
  }
}

.latest-clinic-list:after {
  content: "";
  background-color: #fff;
  width: 110vw;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0%;
  padding-bottom: 100px;
  margin-left: calc(-44vw + 50%);
  padding-top: 100px;
  left: 0;
}

.latest-clinic-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  gap: 1.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

@media screen and (max-width:767px) {
  .latest-clinic-list__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.latest-clinic-list__grid-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.latest-clinic-list__grid-item-link:hover {
  opacity: 0.7;
}

.latest-clinic-list__grid-item-img img {
  aspect-ratio: 324/236;
  -o-object-fit: cover;
  object-fit: cover;
}

.latest-clinic-list__grid-item-title {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.latest-clinic-list__grid-item-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* ----------------------------------------
message mv
---------------------------------------- */
.latest-top {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

@media screen and (max-width:767px) {
  .latest-top {
    padding-bottom: 1.875rem;
  }
}

.latest-top__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  gap: 2.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

@media screen and (max-width:767px) {
  .latest-top__grid {
    gap: 2.5rem 0.875rem;
	display: block;
  }
}

.latest-top__grid-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}


.latest-top__grid-item p,
.swiper-slide p{
	line-height: 1.5;
	font-weight: 300;
}

.latest-top__grid-item:hover {
  opacity: 0.7;
}

.latest-top__grid-item-img{
	position: relative;
}

/* .latest-top__grid-item-img::before{
	content: "カテゴリ名";
	position: absolute;
	top: 0;
	height: 0;
	width: 92px;
	height: 33px;
	text-align: center;
	color: #fff;
	line-height: 33px;
	background-color: #7e6501;
	font-size: 12px;
} */

.latest-top__grid-item-img img {
/*   aspect-ratio: 324/236; */
/*   border-radius: 0.625rem; */
  -o-object-fit: cover;
  object-fit: cover;
}

.latest-top__grid-item-label-wrap {
  display: flex;
  position: relative;
  padding-top: 13px;
  padding-top: 0.8125rem;
  z-index: 1;
  gap: 10px;
  flex-wrap: wrap;
}

.pickup__slide-img .pickup__slide-label-wrap{
	position: absolute;
	top: 24px;
	left: 24px;
	padding-top: 0;
}

.latest-top__grid-item-img .latest-top__grid-item-label-wrap{
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 0;
}

.latest-top__grid-item-label-link {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  background: #7e6501;
  color: #fff;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
}

@media screen and (max-width:767px) {
	.pickup__slide-img .pickup__slide-label-wrap{
		top: 15px;
		left: 15px;
	}
  .latest-top__grid-item-label-link {
    padding: 0.1875rem 0.625rem;
  }
}

.latest-top__grid-item-title {
  display: block;
  font-size: 18px;
  line-height: 1.3333333333;
  margin-top: 5px;
  font-weight: bold;
}

.latest-top__grid-item-title:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.latest-top__grid-item-text {
  font-size: 14px;
/*   font-size: 0.8125rem; */
  line-height: 1.6153846154;
  margin-top: 5px;
/*   margin-top: 0.8125rem; */
}

.latest-top:after {
  content: "";
  background-image: url(../img/front/img-latest-bg.webp);
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  width: 100vw;
  height: 100%;
  position: absolute;
  z-index: -3;
  top: 0%;
  padding-bottom: 100px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-top: 100px;
  left: 0;
}

/* ----------------------------------------
pickup
---------------------------------------- */
.pickup {
/*   padding-top: 60px;
  padding-top: 3.75rem; */
/* 	background-color: #f8f5ef; */
}

@media screen and (max-width:767px) {
  .pickup {
    padding-top: 2.5rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.pickup .swiper-slide,
.latest-top__grid-item{
	padding: 24px;
	background: #fff;
	border: 1px solid rgba(133, 152, 160, .5);
}

@media screen and (max-width: 767px){
	.pickup .swiper-slide,
	.latest-top__grid-item{
		padding: 15px;
		margin: 20px 0;
	}
}

/* .pickup__inner {
  background-image: url(../img/front/pickup-bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 1305px;
  max-width: 81.5625rem;
  margin-left: auto;
  margin-right: auto;
  padding: 120px 100px 80px;
  padding: 7.5rem 6.25rem 5rem;
}

@media screen and (max-width:1000px) {
  .pickup__inner {
    padding: 120px 60px 80px;
  }
}

@media screen and (max-width:767px) {
  .pickup__inner {
    background-image: url(../img/front/pickup-bg-sp.webp);
    background-size: 108% 100%;
    padding: 5rem 1.25rem 2.5rem;
  }
}

@media screen and (max-width: 480px) {
  .pickup__inner {
    background-size: 100% 100%;
  }
} */

.pickup__swiper .swiper-wrapper{
  display: none;
}

.pickup__swiper.swiper-initialized .swiper-wrapper{
  display: flex;
}

.pickup__swiper-wrap {
  max-width: 1115px;
  max-width: 69.6875rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-right: 60px;
  padding-right: 3.75rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  position: relative;
}

@media screen and (max-width:767px) {
  .pickup__swiper-wrap {
    padding-left: 2.625rem;
    padding-right: 2.625rem;
  }
}

.pickup__slide {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pickup__slide:hover {
  opacity: 0.7;
}

.pickup__slide-img img {
/*   aspect-ratio: 324/236; */
  border-radius: 0.625rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.pickup__slide-label-wrap {
  position: relative;
  padding-top: 13px;
  padding-top: 0.8125rem;
  z-index: 1;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.pickup__slide-label-link {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  background: #7e6501;
  color: #fff;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
}

.pickup__slide-title {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3333333333;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.pickup__slide-title:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.pickup__slide-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.pickup__swiper-wrap .swiper-pagination {
  bottom: 18px;
}

.pickup__swiper-wrap .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.pickup__swiper-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px 5px;
  margin: 0 0.3125rem 0.3125rem;
}

.pickup__swiper-wrap .swiper-pagination-bullet {
  background-color: #d4c9b0;
  height: 12px;
  height: 0.75rem;
  width: 12px;
  width: 0.75rem;
}

@media screen and (max-width:767px) {
  .pickup__swiper-wrap .swiper-pagination-bullet {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.pickup__swiper-wrap .swiper-button-prev.swiper-button-black {
  width: 40px;
  width: 2.5rem;
  z-index: 1;
}

@media screen and (max-width:767px) {
  .pickup__swiper-wrap .swiper-button-prev.swiper-button-black {
    width: 1.625rem;
    left: -0.3125rem;
  }
}

.pickup__swiper-wrap .swiper-button-prev.swiper-button-black:after {
  display: none;
}

.pickup__swiper-wrap .swiper-button-next.swiper-button-white {
  width: 40px;
  width: 2.5rem;
  z-index: 1;
}

@media screen and (max-width:767px) {
  .pickup__swiper-wrap .swiper-button-next.swiper-button-white {
    width: 1.625rem;
    right: -0.3125rem;
  }
}

.pickup__swiper-wrap .swiper-button-next.swiper-button-white:after {
  display: none;
}

/* ----------------------------------------
latest
---------------------------------------- */
.latest {
  overflow: clip;
  position: relative;
	background: #fff;
}

.latest__inner {
  max-width: 1200px;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-top: 5rem;
}

.latest__inner:after {
  content: "";
  background-image: url(../img/front/bottom-bg.webp);
  background-size: cover;
  z-index: -1;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 800px;
  left: 0;
  background-position: top;
}

.latest__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width:767px) {
  .latest__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.latest__flex-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 68%;
  flex: 0 1 68%;
  padding-left: 125px;
  padding-left: 7.8125rem;
}

@media screen and (max-width: 1200px) {
  .latest__flex-left {
    padding-left: 1.25rem;
  }
}

@media screen and (max-width: 1000px) {
  .latest__flex-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
  }
}

@media screen and (max-width:767px) {
  .latest__flex-left {
    padding-right: 1.25rem;
  }
}

.latest__flex-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 20px;
  padding-right: 1.25rem;
}

/* @media screen and (max-width:767px) {
  .latest__flex-right {
    display: none;
  }
} */

.latest__flex-sidebar {
  background: #fff;
  padding: 40px;
  padding: 2.5rem;
  margin-left: 48px;
  margin-left: 3rem;
}

@media screen and (max-width: 1200px) {
  .latest__flex-sidebar {
    margin-left: 1.25rem;
    padding: 1.875rem;
  }
}

@media screen and (max-width: 1000px) {
  .latest__flex-sidebar {
    padding: 0.625rem;
  }
}

.latest__flex-sidebar-title {
  color: #7e6501;
  font-size: 18px;
  font-size: 1.125rem;
  border-left: 6px solid #7e6501;
  border-bottom: 1px solid #7e6501;
  padding-left: 25px;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
}

.latest__flex-sidebar-item {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}

.latest__flex-sidebar-item:last-child {
  margin-bottom: 0;
}

.latest__flex-sidebar-item-title-flex {
  background: #f3efe6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}

.latest__flex-sidebar-item-title-flex-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 38px;
  flex: 0 1 38px;
  -ms-flex: 0 1 2.375rem;
  flex: 0 1 2.375rem;
  margin-right: 8px;
  margin-right: 0.5rem;
}

@media screen and (max-width: 1000px) {
  .latest__flex-sidebar-item-title-flex-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 1.75rem;
    flex: 0 1 1.75rem;
  }
}

@media screen and (max-width:767px) {
  .latest__flex-sidebar-item-title-flex-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 2.375rem;
    flex: 0 1 2.375rem;
  }
}

.latest__flex-sidebar-item-title-flex-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.latest__flex-sidebar-item-title-flex-right-en {
  font-family: "Julius Sans One";
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.1;
}

@media screen and (max-width: 1000px) {
  .latest__flex-sidebar-item-title-flex-right-en {
    font-size: 1rem;
  }
}

@media screen and (max-width:767px) {
  .latest__flex-sidebar-item-title-flex-right-en {
    font-size: 1.25rem;
  }
}

.latest__flex-sidebar-item-title-flex-right-title {
  color: #8a7340;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 1000px) {
  .latest__flex-sidebar-item-title-flex-right-title {
    font-size: 0.75rem;
  }
}

@media screen and (max-width:767px) {
  .latest__flex-sidebar-item-title-flex-right-title {
    font-size: 0.875rem;
  }
}

.latest__flex-sidebar-item-title-list {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

@media screen and (max-width: 1000px) {
  .latest__flex-sidebar-item-title-list {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}

@media screen and (max-width:767px) {
  .latest__flex-sidebar-item-title-list {
    padding-left: 2.375rem;
  }
}

.latest__flex-sidebar-item-title-list-item {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 40px;
/*   margin-bottom: 1.5625rem; */
  display: block;
  position: relative;
  padding-left: 25px;
  padding-left: 1.5625rem;
}

@media screen and (max-width: 1000px) {
  .latest__flex-sidebar-item-title-list-item {
    font-size: 0.875rem;
  }
  .latest__flex-sidebar-item-title-list-item{
    margin-bottom: 20px;
    padding-left: 0;
  }
}

@media screen and (max-width:767px) {
  .latest__flex-sidebar-item-title-list-item {
    font-size: 1rem;
  }
}

.latest__flex-sidebar-item-title-list-item:hover {
  color: #7e6501;
  text-decoration: underline;
}

.latest__flex-sidebar-item-title-list-item:last-child {
  margin-bottom: 0;
}

.latest__flex-sidebar-item-title-list-item-arrow {
/*   display: inline-block; */
	display: none;
  vertical-align: middle;
  color: #3D3D3D;
  line-height: 1;
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  -webkit-transform: translateX(30%) rotate(45deg);
  transform: translateX(30%) rotate(45deg);
  margin-right: 12px;
  margin-right: 0.75rem;
  top: 5px;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.latest__flex-sidebar-item-title-list-item:hover .latest__flex-sidebar-item-title-list-item-arrow {
  color: #7e6501;
}

.latest__flex-sidebar-item-title-list-item-arrow::before,
.latest__flex-sidebar-item-title-list-item-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.latest__flex-sidebar-item-title-list-item-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1.2px;
}

.latest__flex-sidebar-item-title-list-item-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}

/* ----------------------------------------
doctor
---------------------------------------- */
#doctor,
.pickup{
	background-color: #243452;
	font-family: serif;
}

#doctor .top-h2-group .top-h2-title,
#doctor .top-h2-group .top-h2-sub-title,
#top-policy .top-h2-group .top-h2-title,
#top-policy .top-h2-group .top-h2-sub-title,
.pickup .top-h2-group .top-h2-title,
.pickup .top-h2-group .top-h2-sub-title{
	color: #fff;
}

#top-policy .top-container{
}

#doctor .top-container,
.pickup .top-container,
.latest .top-container,
.campaign .top-container{
	padding: min(5.55vw, 80px);
}

#doctor .doctor-title{
	font-size: min(1.11vw, 16px);
	line-height: 1.5;
	padding-bottom: 15px;
	margin-bottom: 15px;
	font-family: "Shippori Mincho", serif;
	font-weight: bold;
	color: #7e6501;
}

#doctor .doctor-right .doctor-title{
	border-bottom: 1px solid #a6987a;
}

#doctor .doctor-item .doctor-left .doctor-name{
	font-size: min(1.67vw, 24px);
	line-height: 1.5;
	font-family: "Shippori Mincho", serif;
	margin-bottom: 20px;
	font-weight: bold;
}

#doctor .doctor-item{
	padding: min(2.77vw, 40px);
	margin: min(2.77vw, 40px) 0 min(2.77vw, 40px) 0;
	display: flex;
	justify-content: space-between;
	background-color: #fff;
}

#doctor .doctor-left,
#doctor .doctor-right{
	width: 49%;
}

#doctor .doctor-item .doctor-left img{
	width: 100%;
	margin-bottom: 15px;
}

#doctor .doctor-dl{
	display: flex;
	line-height: 1.7;
}

#doctor .doctor-dt{
	width: 30%;
	font-weight: normal;
}

#doctor .doctor-dd{
	width: 70%;
}

#doctor .doctor-detail-container{
	margin-bottom: min(2.77vw, 40px);
}


@media screen and (max-width: 767px){
	#doctor .doctor-item{
		display: block;
	}
	
	#doctor .doctor-left,
	#doctor .doctor-right{
		width: 100%;
	}
	
	#doctor .doctor-left,
	#doctor .doctor-detail-container{
		margin-bottom: 5vw;
	}
	
	#doctor .doctor-item{
		padding: 20px;
	}
	
	#doctor .doctor-item .doctor-left .doctor-name{
		font-size: 6vw;
	}
	
	#doctor .doctor-title{
		font-size: 4vw;
	}
	
}



/* ----------------------------------------
clinic-info
---------------------------------------- */
#clinic .top-container{
	display: flex;
}

#clinic .clinic-info{
	width: 50%;
}

#clinic .clinic-info:first-child{
	padding: min(5.56vw, 80px) min(3.47vw, 50px);
}

#clinic .clinic-info:nth-child(2){
	padding: min(5.56vw, 80px) min(8.33vw, 120px) min(5.56vw, 80px) min(5.56vw, 80px);
}

#clinic .clinic-info:first-child{
	background-image: url("http://oculofacial-clinic.mark1-web.com/wp-content/uploads/2025/02/Rectangle-231.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

#clinic .clinic-info .biz-hour-container{
	background-color: rgba(255, 255, 255, .8);
	border-radius: 10px;
	width: 100%;
	padding: min(2.77vw, 40px) min(3.47vw, 50px);
	margin: min(11vw, 160px) 0 min(0.7vw, 10px) 0;
}

#clinic .biz-hour {
  display: block;
	font-size: min(1.11vw, 16px);
	line-height: 1.5;
	letter-spacing: .05em;
}

#clinic .biz-hour tbody{
	display: block;
	width: 100%;
}

#clinic .biz-hour tr{
	width: 100%;
	display: flex;
}

#clinic .biz-hour th, .biz-hour td {
  padding: min(0.7vw, 10px);
  text-align: center;
  border-bottom: 1px solid #21262B;
  font-weight: normal;
}

#clinic .biz-hour tr td:first-child,
#clinic .biz-hour tr th:first-child{
	width: 44%;
}

#clinic .biz-hour tr td:nth-child(n+2),
#clinic .biz-hour tr th:nth-child(n+2){
	width: 8%;
}

#clinic address{
	color: #fff;
	line-height: 1.7;
}

#clinic .clinic-info-text{
	line-height: 1.7;
	margin-top: 20px;
}

@media screen and (max-width: 767px) {
	#clinic .top-container{
		display: flex;
		flex-direction: column-reverse;
	}
	
	#clinic .clinic-info{
		width: 100%;
	}
	
  #clinic .biz-hour th,
  #clinic .biz-hour td {
    padding: 1vw;
  }
	
	#clinic address{
		font-size: 3.2vw;
	}
	
	#clinic .clinic-info .biz-hour-container{
		border-radius: 5px;
		padding: 3vw 4vw;
		margin: 8vw 0;
	}

	#clinic .biz-hour {
		font-size: 3vw;
	}
}



/* ----------------------------------------
top-policy
---------------------------------------- */

#top-policy .top-container{
	padding: 0 0 min(5.55vw, 80px);
}

#top-policy .policy-caution{
/* 	width: 55.6vw; */
	max-width: 1000px;
	padding: 6px;
  margin: 0 auto;
  border: 4px solid #fff;
}
#top-policy .policy-caution p, #top-policy .policy-caution a{
	color: #fff;
}

#top-policy .policy-border{
	border: 1px solid #fff;
	padding: min(2.1vw, 30px);
	color: #fff;
}

#top-policy .policy-border a{
	text-decoration: underline;
	line-height: 1.5;
}

@media screen and (max-width: 767px){
	#top-policy .top-container{
		padding: 6vw;
	}
	
	#top-policy .policy-caution{
		padding: 1vw;
	}
	
	#top-policy .policy-border{
		padding: 6vw;
	}
}


/* ----------------------------------------
head
---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');

:root{
	--single-font-gothic: "Zen Kaku Gothic New", serif;
	--single-font-mincho: "Zen Old Mincho", serif;
}

@media screen and (max-width:767px){
	.pc{
		display: none !important;
	}
}

@media screen and (min-width:767px){
	.sp{
		display: none !important;
	}
}

.elementor-widget-text-editor{
	font-family: var(--single-font-gothic) !important;
	font-size: 15px;
	line-height: 1.6;
}

.single__inner-wrap{
	font-family: var(--single-font-gothic);
}

.single-head__content {
  min-height: 452px;
  min-height: 23.25rem;
  height: 100%;
  background-image: url(../img/common/single-title-bg.webp);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width:767px) {
  .single-head__content {
    background-position: right;
    min-height: 12rem;
    padding-top: 2rem;
  }
}

.single-head__title {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
/*   font-family: "Julius Sans One"; */
	font-family: serif;
  padding-top: 5rem;
	font-weight: bold;
}

@media screen and (max-width:767px) {
  .single-head__title {
    font-size: 1.25rem;
    padding-top: 0;
  }
}

.single__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1000px) {
  .single__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.single__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
/*   padding-top: 40px;
  padding-top: 6.5rem; */
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}

.single__flex-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 66%;
  flex: 0 1 66%;
  max-width: 616px;
}

.single__flex-sidebar {
/* 	display: none; */
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
	font-family: serif;
    font-weight: bold;
	position: sticky;
    top: 55px;
}

@media screen and (max-width: 1000px) {
  .single__flex-sidebar {
    margin-left: 0;
  }
  .single__inner{
    padding-top: 0;
  }
}

@media screen and (max-width:767px) {
  .single__flex-sidebar {
    margin-left: 0;
    padding-left: 0;
/*     margin-top: 5rem; */
	  margin-bottom: 50px;
  }
}

.single__flex-sidebar .latest__flex-sidebar-item-title-list {
  padding-left: 20px;
  padding-left: 1.25rem;
}

.single__flex-sidebar-button-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.single__flex-sidebar-button.--circle {
  border-radius: 999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, 1.7vw, 24px);
  height: 194px;
  height: 12.125rem;
  width: 194px;
  width: 12.125rem;
  position: fixed;
  right: 40px;
  right: 2.5rem;
  bottom: 40px;
  bottom: 2.5rem;
}

@media screen and (max-width:767px) {
  .single__flex-sidebar-button.--circle {
    height: 9rem;
    width: 9rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }
}

.single__flex-sidebar-button.--circle .single__flex-sidebar-button::before {
  position: relative;
  left: 0;
  display: inline-block;
}

.single__flex-sidebar-button.--circle::before {
  content: none;
}

.single__flex-sidebar-button--circle-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__flex-sidebar-button--circle-first::before {
  content: "";
  background-image: url(../img/common/header-seach-icon.webp);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-right: 5px;
}

@media screen and (max-width:767px) {
  .single__flex-sidebar-button-first.single__flex-sidebar-button {
    max-width: 100%;
    width: 100%;
  }
}

.single__flex-sidebar-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(180deg, rgb(196, 184, 150) 0%, rgb(126, 101, 1) 100%);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 clamp(200px, 20vw, 280px);
  flex: 0 1 clamp(200px, 20vw, 280px);
  font-size: clamp(10px, 1vw, 20px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  font-weight: bold;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 3;

}


.single__flex .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) .single__flex-sidebar-button {
  background-image: linear-gradient(180deg, rgb(196, 184, 150) 0%, rgb(126, 101, 1) 100%) !important;
}

@media screen and (max-width:767px) {
  .single__flex-sidebar-button {
    font-size: 1rem;
  }
}

.single__flex-sidebar-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#a6987a), to(#a6987a));
  background: linear-gradient(90deg, #a6987a 0%, #a6987a 100%);
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
}

.single__flex-sidebar-button:hover::after {
  width: 100%;
}

.single__flex-sidebar-button::before {
  content: "";
  background-image: url(../img/common/header-seach-icon.webp);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-right: 5px;
}

.single__flex-content>* {
  margin-top: 32px;
  margin-top: 2rem;
}

.single__inner-wrap a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single__inner-wrap a:hover {
  opacity: 0.7;
}

.single__inner-wrap h2.elementor-heading-title {
    font-size: 28px;
	font-family: serif;
	font-weight: bold;
	padding-left: 20px;
	position: relative;
}

@media screen and (max-width:767px) {
  .single__inner-wrap h2.elementor-heading-title {
    font-size: 1.5rem;
  }
}

.single__inner-wrap h2.elementor-heading-title::before {
    content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%, -50%);
	width: 40px;
	height: 40px;
	background-color: #f8f5ef;
	z-index: -2;
}

.single__inner-wrap h3.elementor-heading-title {
    font-size: 24px;
	font-family: serif;
	font-weight: bold;
	padding-left: 16px;
	position: relative;
	border-left: 4px solid #7e6501;
	line-height: 40px;
}

@media screen and (max-width:767px) {
  .single__inner-wrap h3.elementor-heading-title {
    font-size: 1.25rem;
  }
}

.single__inner-wrap h4.elementor-heading-title {
    font-size: 20px;
	font-family: serif;
	font-weight: bold;
	padding-left: 20px;
	position: relative;
}

.single__inner-wrap h4.elementor-heading-title::before{
	content: "";
    display: inline-block;
    width: 10px;
	height: 40px;
    background-image: url('https://www.oc-osaka.com/media/wp-admin/images/module-h4-line.png');
    background-position: center;
    background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0%, -50%);
}

@media screen and (max-width:767px) {
  .single__inner-wrap h4.elementor-heading-title {
    font-size: 1.125rem;
  }
}

.single__inner-wrap h5.elementor-heading-title {
    font-size: 20px;
	font-family: serif;
	font-weight: bold;
}

@media screen and (max-width:767px) {
  .single__inner-wrap h5.elementor-heading-title {
    font-size: 1.125rem;
  }
}

.single-button-blue-1,
.single__inner-wrap .single-button-blue-2,
.single__inner-wrap .single-button-blue-3,
.single__inner-wrap .single-button-white-border-1,
.single__inner-wrap .single-button-white-border-2,
.single__inner-wrap .single-button-white-border-3{
/* 	font-family: "Noto Sans JP", Sans-serif; */
	font-family: var(--single-font-gothic);
	display: inline-block;
	min-width: 240px;
	height: auto;
	text-align: center;
	color: #fff;
	background-color: #7e6501;
	position: relative;
	padding: 15px 40px 15px 15px;
	margin: 10px 0 20px;
	text-align: left;
}

@media screen and (max-width: 767px){
	.single-button-blue-1,
	.single__inner-wrap .single-button-blue-2,
	.single__inner-wrap .single-button-blue-3,
	.single__inner-wrap .single-button-white-border-1,
	.single__inner-wrap .single-button-white-border-2,
	.single__inner-wrap .single-button-white-border-3{
		margin: 10px 0 20px;
	}
}

.single__inner-wrap .single-button-blue-2,
.single__inner-wrap .single-button-blue-3,
.single__inner-wrap .single-button-white-border-2,
.single__inner-wrap .single-button-white-border-3{
	border-radius: 28px;
}

.single__inner-wrap .single-button-white-border-1,
.single__inner-wrap .single-button-white-border-2,
.single__inner-wrap .single-button-white-border-3{
	color: #7e6501;
	background-color: #fff;
	border: 1px solid #7e6501;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-button-blue {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem 0.625rem;
  }
}

.single-button-blue-1::before,
.single__inner-wrap .single-button-blue-2::before,
.single__inner-wrap .single-button-blue-3::before,
.single__inner-wrap .single-button-white-border-1::before,
.single__inner-wrap .single-button-white-border-2::before,
.single__inner-wrap .single-button-white-border-3::before{
	content: "";
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	right: 26px;
	top: 50%;
	transform: translate(0, -50%) rotate(45deg);
	z-index: 1;
}

@media screen and (max-width: 767px){
	.single-button-blue-1::before,
	.single__inner-wrap .single-button-blue-2::before,
	.single__inner-wrap .single-button-blue-3::before,
	.single__inner-wrap .single-button-white-border-1::before,
	.single__inner-wrap .single-button-white-border-2::before,
	.single__inner-wrap .single-button-white-border-3::before{
		right: 23px;
	}
}

.single__inner-wrap .single-button-blue-3::before,
.single__inner-wrap .single-button-white-border-1::before,
.single__inner-wrap .single-button-white-border-2::before{
	border-top: 2px solid #7e6501;
	border-right: 2px solid #7e6501;
/* 	z-index: 1; */
/* 	right: 26px; */
}


.single-button-blue-1::after,
.single__inner-wrap .single-button-blue-2::after{
	content: "";
	width: 98%;
	height: 90%;
	border: 1px solid #fff;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

.single__inner-wrap .single-button-blue-2::after{
	border-radius: 25px;
}

.single__inner-wrap .single-button-blue-3::after,
.single__inner-wrap .single-button-white-border-3::after{
	content: "";
	width: 46px;
	height: 46px;
	transform: translate(0, -50%);
	position: absolute;
	top: 50%;
	right: 6px;
	background-color: #fff;
	border-radius: 23px;
}

@media screen and (max-width: 767px){
	.single__inner-wrap .single-button-blue-3::after,
	.single__inner-wrap .single-button-white-border-3::after{
		width: 40px;
		height: 40px;
	}
}

.single__inner-wrap .single-button-white-border-3::after{
	background-color: #7e6501;
}

/* .single__inner-wrap .single-button-blue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #a6987a;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
} */

/* .single__inner-wrap .single-button-blue:hover {
  opacity: 1;
  -webkit-box-shadow: 0px 3px 1px #a6987a;
  box-shadow: 0px 3px 1px #a6987a;
}

.single__inner-wrap .single-button-blue:hover::after {
  width: 100%;
} */

/* .single__inner-wrap .single-button-blue::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: 10px;
  right: 0.625rem;
}

.single__inner-wrap .single-button-white-border {
  max-width: 310px;
  max-width: 19.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 36px;
  text-align: center;
  background: #fff;
  color: #7e6501;
  text-decoration: none;
  border-radius: 1.875rem;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, .25);
  padding: 10px 10px 10px;
  padding: 0.625rem 0.625rem 0.625rem;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
} */

@media screen and (max-width:767px) {
  .single__inner-wrap .single-button-white-border {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem 0.625rem;
  }
}

.single__inner-wrap .single-button-white-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #58C5E9;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
  z-index: -1;
}

.single__inner-wrap .single-button-white-border:hover {
  -webkit-box-shadow: 0px 0px 0px transparent;
  box-shadow: 0px 0px 0px transparent;
  color: #fff;
  opacity: 1;
}

.single__inner-wrap .single-button-white-border:hover::after {
  width: 100%;
}

.single__inner-wrap .single-button-white-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 3px solid transparent;
  background: linear-gradient(135deg, #3eb9e1, #2392c1) border-box border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3EB9E1)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #2392C1)) border-box;
  -webkit-mask: linear-gradient(#3EB9E1 0 0) padding-box, linear-gradient(#2392C1 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #3EB9E1)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #2392C1)) border-box;
  mask: linear-gradient(#3EB9E1 0 0) padding-box, linear-gradient(#2392C1 0 0) border-box;
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
}

.single__inner-wrap .single-button-white-border-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: #178EC0;
  border-right: 0;
  position: absolute;
  right: 12px;
  right: 0.75rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.single__inner-wrap .single-button-white-border:hover .single-button-white-border-arrow {
  border-left-color: #fff;
}

.single__inner-wrap .single-button-circle {
  position: relative;
  max-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.single__inner-wrap .single-button-circle::before {
  content: "";
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  border-radius: 62.4375rem;
  background: #f3efe6;
  position: absolute;
  left: 80px;
  z-index: -1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.single__inner-wrap .single-button-circle:hover::before {
  width: 52px;
  width: 3.25rem;
  height: 52px;
  height: 3.25rem;
}

.single__inner-wrap .single-button-circle:hover {
  color: #00B1FB;
  opacity: 1;
}

.single__inner-wrap .single-button-circle-arrow {
  position: relative;
  right: 0;
}

.single__inner-wrap .single-button-circle-arrow:before,
.single__inner-wrap .single-button-circle-arrow:after {
  position: absolute;
  top: 50%;
  right: -28px;
  height: 1px;
  background: #343434;
  content: "";
}

.single__inner-wrap .single-button-circle:hover .single-button-circle-arrow:before {
  background: #00B1FB;
}

.single__inner-wrap .single-button-circle:hover .single-button-circle-arrow:after {
  background: #00B1FB;
}

.single__inner-wrap .single-button-circle-arrow:before {
  width: 15px;
  width: 0.9375rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.single__inner-wrap .single-button-circle-arrow:after {
  width: 4px;
  width: 0.25rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

/* ----------------------------------------
tp-cta
---------------------------------------- */
.tp-cta{
	width: 100%;
	padding: 30px 20px;
	background-image: url("https://www.oc-osaka.com/media/wp-content/uploads/2025/05/cta-pc-1.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.tp-cta .tp-cta-title{
	text-align: center;
	font-size: 48px;
	line-height: 1.7;
	font-family: "Shippori Mincho", serif;
	color: #fff;
}

.tp-cta .tp-cta-text{
	text-align: center;
	font-size: 15px;
	line-height: 1.7;
	font-family: "Shippori Mincho", serif;
	color: #fff;
}

.tp-cta .tp-cta-btn-list{
	display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 30px;
}

.tp-cta .tp-cta-btn-list .single-button-blue-1{
	width: 240px;
	margin: 0;
}
.single-button{
	width: 240px;
	margin: 0;
}

@media screen and (max-width: 767px){
	.tp-cta{
		padding: 30px 20px;
	}
	
	.tp-cta .tp-cta-btn-list{
		display: block;
	}
	.tp-cta .tp-cta-btn-list a{
		display: block;
		margin-bottom: 15px;
		width: 100%;
	}

	.tp-cta .tp-cta-btn-list .single-button-blue-1{
		width: 100%;
		margin: 10px 0;
	}
}

.tp-cta .tp-cta-btn-list .single-button-blue-1::after{
	width: 98%;
	height: 90%;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-tel{
	background: #fff;
	color: #7e6501;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-tel::before{
	border-top: 2px solid #7e6501;
    border-right: 2px solid #7e6501;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-tel::after{
	border: 1px solid #7e6501;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-tel span{
	padding-left: 24px;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-tel span::before{
	  content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-cta-tel.png);
    background-position: center;
    background-size: contain;
    position: absolute;
    transform: translate(0%, -51%);
    top: 53%;
    left: 5%;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-line{
	background: #06C755;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-line span{
	padding-left: 37px;
}

.tp-cta .tp-cta-btn-list .tp-cta-btn-line span::before{
	  content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-cta-line.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transform: translate(0%, -50%);
    top: 50%;
    left: 7%;
}

.single__inner-wrap .single-table-scroll {
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.single__inner-wrap .single-table-scroll::-webkit-scrollbar {
  display: none;
}

.single__inner-wrap .single-table-scroll>* {
  min-width: 600px;
  min-width: 37.5rem;
}

.single__inner-wrap .single-table-head {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

.single__inner-wrap .single-table-head th,
.single__inner-wrap .single-table-head02 th,
.single__inner-wrap .single-table-head-left02 th{
  padding: 10px;
  background: #7e6501;
  border: solid 1px #fff;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  letter-spacing: .1em;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-table-head th {
    font-size: 0.875rem;
  }
}

.single__inner-wrap .single-table-head td,
.single__inner-wrap .single-table-head02 td,
.single__inner-wrap .single-table-head-left td,
.single__inner-wrap .single-table-head-left02 td,
.single__inner-wrap .single-table-simple td{
  padding: 10px;
  border: solid 1px #fff;
  font-size: 16px;
  background-color: #f8f5ef;
  letter-spacing: .1em;
}

.single__inner-wrap .single-table-head02 {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}

/* .single__inner-wrap .single-table-head02 th {
  padding: 10px;
  background: #f3efe6;
  border: solid 1px #BCDAE4;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
} */

@media screen and (max-width:767px) {
  .single__inner-wrap .single-table-head02 th {
    font-size: 0.875rem;
  }
}
/* 
.single__inner-wrap .single-table-head02 td {
  padding: 10px;
  border: solid 1px #BCDAE4;
  font-size: 14px;
  font-size: 0.875rem;
} */

.single__inner-wrap .single-table-head-left {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

.single__inner-wrap .single-table-head-left td:first-child,
.single__inner-wrap .single-table-head-left02 td:first-child{
  padding: 9px;
  background: #93B0C6;
  border: solid 1px #fff;
  font-weight: 400;
  font-size: 15px;
/*   font-size: 1.125rem; */
	color: #fff;
	letter-spacing: .1em;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-table-head-left td:first-child {
    font-size: 0.875rem;
  }
}

/* .single__inner-wrap .single-table-head-left td {
  padding: 10px;
  border: solid 1px #BCDAE4;
  font-size: 14px;
  font-size: 0.875rem;
} */

.single__inner-wrap .single-table-head-left02 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* .single__inner-wrap .single-table-head-left02 th {
  padding: 10px;
  background: #f3efe6;
  border: solid 1px #BCDAE4;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
} */

@media screen and (max-width:767px) {
  .single__inner-wrap .single-table-head-left02 th {
    font-size: 0.875rem;
  }
}

/* .single__inner-wrap .single-table-head-left02 td:first-child {
  padding: 9px;
  background: #f3efe6;
  border: solid 1px #BCDAE4;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
} */

@media screen and (max-width:767px) {
  .single__inner-wrap .single-table-head-left02 td:first-child {
    font-size: 0.875rem;
  }
}

/* .single__inner-wrap .single-table-head-left02 td {
  padding: 10px;
  border: solid 1px #BCDAE4;
  font-size: 14px;
  font-size: 0.875rem;
} */

.single__inner-wrap .single-table-simple {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

/* .single__inner-wrap .single-table-simple td {
  padding: 10px;
  border: solid 1px #BCDAE4;
  font-size: 14px;
  font-size: 0.875rem;
} */

.single__inner-wrap .single-merit__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-merit__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	  gap: 5px;
  }
}

.single__inner-wrap .single-merit__item {
  width: 49%;
  padding: 30px;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-merit__item {
    width: 100%;
  }
}

.single__inner-wrap .single-merit__item-title {
/*   display: -webkit-box;
  display: -ms-flexbox; */
/*   display: flex; */
/*   -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; */
  color: #333;
  font-size: 15px;
/*   font-size: 1.125rem; */
/*   -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  margin-bottom: 20px;
/*   padding-bottom: 1.25rem; */
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-merit__item-title {
    font-size: 0.875rem;
  }
}

.single__inner-wrap .single-merit__item-title span {
  font-size: 28px;
/*   font-size: 1.5rem; */
  letter-spacing: 0.02em;
  color: #333;
  font-family: "Julius Sans One";
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-merit__item-title span {
    font-size: 1.25rem;
  }
}

.single__inner-wrap .single-merit__item-text {
  padding-bottom: 7px;
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.single__inner-wrap .single-merit__item-text:before {
  	content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #000;
}

.single__inner-wrap .single-merit__item--blue {
  background: #FFFCFB;
  border: 2px solid #7FD5E9;
}

.single__inner-wrap .single-merit__item--gray {
  background: #F9F9F9;
}

.single__inner-wrap .single-merit__item--red {
  background: #FFFCFB;
  border: 2px solid #ECA992;
}

.single__inner-wrap .single-merit__item--red .single-merit__item-title,
.single__inner-wrap .single-merit__item--blue .single-merit__item-title{
	padding-left: 0px;
	position: relative;
}

/* .single__inner-wrap .single-merit__item--red .single-merit__item-title::before,
.single__inner-wrap .single-merit__item--blue .single-merit__item-title::before{
	content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url(https://www.oc-osaka.com/media/wp-admin/images/module-icon-merit.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
}

.single__inner-wrap .single-merit__item--blue .single-merit__item-title::before{
	background-image: url(https://www.oc-osaka.com/media/wp-admin/images/module-icon-demerit.png);
} */

/* .single__inner-wrap .single-merit__item--red .single-merit__item-text:before {
  background-image: url(../img/single/merit02.webp);
} */

.single__inner-wrap .single-cpt__body-button-wrap-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-cpt__body-button-wrap-title {
    font-size: 0.75rem;
  }
}

.single__inner-wrap .single-cpt__body-button-wrap-title::before,
.single__inner-wrap .single-cpt__body-button-wrap-title::after {
  content: "";
  width: 1px;
  height: 12px;
  padding-top: 4px;
  padding-top: 0.25rem;
  background-color: #3D3D3D;
}

.single__inner-wrap .single-cpt__body-button-wrap-title::before {
  margin-right: 15px;
  margin-right: 0.9375rem;
  -webkit-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.single__inner-wrap .single-cpt__body-button-wrap-title::after {
  margin-left: 10px;
  margin-left: 0.625rem;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}

.single__inner-wrap .single-cpt__body-button-wrap .latest-cpt__body-button-bottom {
  font-size: 24px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-cpt__body-button-wrap .latest-cpt__body-button-bottom {
    font-size: 1.25rem;
  }
}

.single__inner-wrap .single-cpt__body-button-wrap .latest-cpt__body-button-bottom:after {
  content: "";
  background-image: url(../img/common/header-seach-icon.webp);
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  margin-right: 4px;
  margin-right: 0.25rem;
}

.single__inner-wrap .single-cpt__body-button-wrap .latest-cpt__body-button {
  max-width: 455px;
  max-width: 28.4375rem;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  margin-left: auto;
  margin-right: auto;
}

.single__inner-wrap .single-cpt__body-button-wrap .latest-cpt__body-button:hover {
  opacity: 1;
}

.single__inner-wrap .single-related__list-title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #8a7340;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #8a7340;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-related__list-title {
    font-size: 1.25rem;
  }
}

.single__inner-wrap .single-related__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-related__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.single__inner-wrap .single-related__list-item {
    width: 32%;
	border: 0.5px solid #a6987a;
	padding: 24px;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-related__list-item {
    width: 100%;
  }
}

.single__inner-wrap .single-lastest-supervision.lastest-supervision {
  margin-left: 0;
  margin-right: 0;
}

.single__inner-wrap .lastest-supervision__flex-img-text {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.single__inner-wrap .lastest-supervision__flex-img-name {
  font-size: 15px;
  font-size: 1rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.single__inner-wrap .single-detail-content__accordion-group {
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, .09);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .09);
}

.single__inner-wrap .single-detail-content__accordion-head {
  position: relative;
  text-align: left;
  padding: 35px 124px 35px 64px;
  padding: 2.1875rem 7.75rem 2.1875rem 4rem;
  cursor: pointer;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-detail-content__accordion-head {
    padding: 2.5rem 1.25rem 2.1875rem 1.25rem;
  }
}

.single__inner-wrap .single-detail-content__accordion-head:hover {
  opacity: 0.7;
}

.single__inner-wrap .single-detail-content__accordion-body {
  position: relative;
  font-size: 15px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4375;
  padding: 0 64px 0;
  padding: 0 4rem 0;
  line-height: 0;
  opacity: 0;
  -webkit-transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
  transition: line-height 0.4s, padding 0.4s, opacity 0.4s;
  display: none;
}

.single__inner-wrap .single-detail-content__accordion-body.is-open {
  padding: 30px 0px 40px;
  padding: 1.875rem 0rem 2.5rem;
  line-height: 1.5;
  opacity: 1;
  display: block;
  border-top: 1px solid #B3DAEA;
  margin-left: 30px;
  margin-left: 1.875rem;
  margin-right: 30px;
  margin-right: 1.875rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-detail-content__accordion-body.is-open {
    padding: 1.25rem 0rem 1.25rem;
  }
}

.single__inner-wrap .single-detail-content__accordion-head.is-open::after {
  -webkit-transform: rotate(45deg) translateY(-10px);
  transform: rotate(45deg) translateY(-10px);
}

.single__inner-wrap .single-detail-content__accordion-head:not(:first-child) {
  margin-top: 16px;
}

.single__inner-wrap .single-detail-content__accordion-head-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__inner-wrap .single-detail-content__accordion-head-flex-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 10%;
  flex: 0 1 10%;
  margin-right: 2%;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-detail-content__accordion-head-flex-img {
    margin-right: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
  }
}

.single__inner-wrap .single-detail-content__accordion-head-flex-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-detail-content__accordion-head-flex-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.single__inner-wrap .single-detail-content__accordion-head-flex-title {
  color: #554C36;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.45;
  padding-left: 30px;
  padding-left: 1.875rem;
}

.single__inner-wrap .single-detail-content__accordion-head-flex-name {
  color: #9B9585;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.02em;
  line-height: 1.4375;
}

.single__inner-wrap .qa-question__accordion-button {
  position: absolute;
  right: 40px;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  vertical-align: middle;
  color: #B3DAEA;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translate(25%, -50%) rotate(135deg);
  transform: translate(25%, -50%) rotate(135deg);
}

.single__inner-wrap .is-open .qa-question__accordion-button {
  -webkit-transform: translateY(25%) rotate(-45deg);
  transform: translateY(25%) rotate(-45deg);
}

.elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container {
  border: 1px solid #8a7340;
  background: #FBFBFB;
  padding: 20px;
  padding: 1.25rem;
  border-radius: 0;
}

@media screen and (max-width:767px) {
  .elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container {
    padding: 20px 15px;
  }
}

.single__inner-wrap .single-toc {
  border: 1px solid #8a7340;
  background: #FBFBFB;
  padding: 20px;
  padding: 1.25rem;
}

.elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container .elementor-toc__header {
  border-bottom: 0;
}

.elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container .elementor-toc__header-title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #8a7340;
  text-align: center !important;
  width: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width:767px) {
  .elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container .elementor-toc__header-title {
    font-size: 20px;
  }
}

.elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-toc__header {
  position: relative;
  padding: 0;
}

.elementor-toc__toggle-button.elementor-toc__toggle-button--expand:after,
.elementor-toc__toggle-button.elementor-toc__toggle-button--collapse:after {
  content: "";
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
}

.elementor-toc__toggle-button[aria-expanded="false"]:before {
  content: "";
  position: absolute;
  right: 20px;
  right: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  color: #B3DAEA;
  line-height: 1;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  border: 0.1em solid #7e6501;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  top: 30px;
}

.elementor-toc__toggle-button[aria-expanded="true"]:before {
  content: "";
  position: absolute;
  right: 20px;
  right: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  color: #B3DAEA;
  line-height: 1;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  border: 0.1em solid #7e6501;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-55%) rotate(-45deg);
  transform: translateY(-55%) rotate(-45deg);
  top: 37px;
}

.elementor-toc__toggle-button svg {
  font-size: 0;
}


.elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container .elementor-toc__body {
  border-top: 1px solid #8a7340;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
  margin-top: 20px;
}

@media screen and (max-width:767px) {
  .elementor-toc--minimized-on-mobile.elementor-widget-table-of-contents .elementor-widget-container .elementor-toc__body {
    padding: 20px 5px;
    line-height: 1.4;
  }
}

ol.elementor-toc__list-wrapper .elementor-toc__list-item-text-wrapper:before {
  content: counters(item, "-") " |" !important;
  white-space: nowrap;
}


/*  */

/*.single__inner-wrap .single-toc {
  border: 1px solid #8a7340;
  background: #FBFBFB;
  padding: 20px;
  padding: 1.25rem;
}
.single__inner-wrap .single-toc__head {
  font-size: 24px;
  font-size: 1.5rem;
  color: #8a7340;
  text-align: center;
  width: 100%;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.single__inner-wrap .single-toc__head:hover {
  opacity: 0.7;
}
.single__inner-wrap .single-toc__head.is-open {
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.single__inner-wrap .single-toc__body {
  border-top: 1px solid #8a7340;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
  display: none;
  opacity: 0;
}
@media screen and (max-width:767px) {
  .single__inner-wrap .single-toc__body {
    padding: 1.25rem 1.25rem;
  }
}
.single__inner-wrap .single-toc__body.is-open {
  display: block;
  opacity: 1;
}
.single__inner-wrap .single-toc__body-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #3D3D3D;
}
.single__inner-wrap .single-toc__body-list-item a {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.single__inner-wrap .single-toc__body-list-block {
  padding-left: 20px;
  padding-left: 1.25rem;
}
.single__inner-wrap .single-toc__body-list-item {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.single__inner-wrap .single-toc__head-button {
  position: absolute;
  right: 20px;
  right: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  color: #B3DAEA;
  line-height: 1;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  top: 50%;
}
.single__inner-wrap .single-toc__head.is-open .single-toc__head-button {
  -webkit-transform: translateY(-55%) rotate(-45deg);
          transform: translateY(-55%) rotate(-45deg);
  top: 50%;
} */
.single__inner-wrap .single-breadcrumd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single__inner-wrap .single-breadcrumd__item {
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 12px;
  font-size: 0.75rem;
	color: #8E8E8E;
}

.single__inner-wrap .single-breadcrumd__item:after {
  content: "";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%227%22%20height%3D%2212%22%20viewBox%3D%220%200%207%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%201L6%206.21008L1%2011%22%20stroke%3D%22%233D3D3D%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  background-repeat: no-repeat;
  position: absolute;
  background-size: 100% 100%;
  top: 50%;
  bottom: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8px;
  left: 0.5rem;
}

.single__inner-wrap .single-breadcrumd__item:first-child {
  padding-left: 0;
}

.single__inner-wrap .single-breadcrumd__item:first-child::after {
  content: none;
}

.single__inner-wrap .single-breadcrumd__item-link {
  text-decoration: none;
/*   color: #8E8E8E; */
}

.single__inner-wrap .single-step__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 16px;
  margin-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
	margin-top: 50px;
}

.single__inner-wrap .single-step__item .single-step__item-text-content{
	font-size: 15px;
	line-height: 1.6;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-step__item {
    display: block;
	padding-right: 0px;
	padding-left: 30px;
  }
}

.single__inner-wrap .single-step__item:last-child {
  border-bottom: 0;
}

.single__inner-wrap .single-step__item-text{
	width: 60%;
	padding: 0 30px 0 100px;
}

@media screen and (max-width:767px) {
	.single__inner-wrap .single-step__item-text{
		width: 100%;
		padding: 20px 0 20px 20px;
	}
}

.single__inner-wrap .single-step__item-text .single-step__item-text-title{
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 30px;
	position: relative;
}

.single__inner-wrap .single-step__item-text .single-step__item-text-title .single-step__num{
	position: absolute;
	font-size: 28px;
	color: #fff;
	background-color: #7e6501;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	line-height: 79px;
	transform: translate(0%, -50%);
	top: 50%;
	left: -100px;
	text-align: center;
	font-weight: normal;
	font-family: var(--single-font-mincho);
}

.single__inner-wrap .single-step__item-img{
	width: 100%;
}

.single__inner-wrap .single-step__item-img img{
	width: 100%;
	margin-bottom: 20px;
}

.single__inner-wrap .single-step__item-img.pc{
	display: none;
}
.single__inner-wrap .single-step__item-img.sp{
	display: block!important;
}
.single__inner-wrap .single-step__item-text{
	width: 100%;
}

@media screen and (max-width:767px) {
	.single__inner-wrap .single-step__item-text .single-step__item-text-title .single-step__num{
		font-size: 20px;
		width: 50px;
		height: 50px;
		line-height: 49px;
		left: -60px;
	}
	
	.single__inner-wrap .single-step__item-img{
		width: 100%;
		margin-bottom: 30px;
	}
}

.single__inner-wrap .single-step__item-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20%;
  flex: 0 1 20%;
  margin-right: 10px;
  margin-right: 0.625rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #7e6501;
  font-family: "Julius Sans One";
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-step__item-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 15%;
    flex: 0 1 15%;
  }
}

.single__inner-wrap .single-step__item-left-en {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.single__inner-wrap .single-step__item-left-number {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single-step__item-left-number {
    font-size: 1.25rem;
  }
}
/* 
.single__inner-wrap .single-step__item-left:after {
  content: "";
  width: 1px;
  height: 100%;
  background: #7e6501;
  position: relative;
  margin-top: 20px;
  margin-top: 1.25rem;
} */

.single__inner-wrap .single-step__item-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 15px;
  padding-top: 0.9375rem;
}

.single__inner-wrap .single-step__item-right-title {
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  line-height: 1.2;
}

.single__inner-wrap .single-step__item-right-text {
  font-size: 13px;
  font-size: 0.8125rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  width: 90%;
  display: block;
  line-height: 1.4615384615;
}

.single__inner-wrap .single__faq {
  margin-bottom: 0px;
/*   margin-bottom: 4.375rem; */
	border: 1px solid #7e6501;
    padding: 20px 40px;
	background-color: #f8f5ef;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__faq {
    margin-bottom: 0;
	 padding: 20px;
  }
	.floating_btn_tel{
		width: 16%!important;
	}
	.floating_btn_web, .floating_btn_line {
        width: 40%!important;
    }
}

.single__inner-wrap .faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.single__inner-wrap .faq__question:hover {
  opacity: 0.7;
}

.single__inner-wrap .faq__question,
.single__inner-wrap .faq__answer {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 80px;
  flex: 0 1 80px;
  -ms-flex: 0 1 5rem;
  flex: 0 1 5rem;
}

.single__inner-wrap .faq__question .doctor-image{
	width: 64px;
	height: 64px;
	border-radius: 100%;
}

.single__inner-wrap .tp-supervision-small .faq__question{
	align-items: center;
}

.single__inner-wrap .tp-supervision-small .faq__content{
	padding-left: 30px;
}

.single__inner-wrap .tp-supervision-small{
	background-color: #fff;
}

.single__inner-wrap .tp-supervision-small .lastest-supervision-box{
	padding-right: 34px;
	margin-top: 10px;
}

@media screen and (max-width: 767px){
	.single__inner-wrap .tp-supervision-small .faq__content{
		font-size: 10px;
		padding-left: 15px;
	}
	
	.single__inner-wrap .tp-supervision-small{
		padding: 10px;
	}
}

.single__inner-wrap .faq__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding-right: 34px;
}

.single__inner-wrap .faq__question-icon {
/*   color: #7e6501; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.02em;
  line-height: 1.4375;
  margin-right: 20px;
  margin-right: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .faq__question-icon {
    font-size: 1.3125rem;
    margin-right: 0.8125rem;
  }
}

.single__inner-wrap .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4375;
	margin-top: 15px;
}

.single__inner-wrap .faq__content-answer {
  padding-top: 12px;
  padding-top: 0.75rem;
  font-size: 15px;
	line-height: 1.6;
}

.single__inner-wrap .faq__answer-icon {
/*   color: #d4c9b0; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4375;
  margin-right: 20px;
  margin-right: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .faq__answer-icon {
    font-size: 1.3125rem;
    letter-spacing: 0.05em;
    line-height: 1.4285714286;
    margin-right: 0.8125rem;
  }
}

.single__inner-wrap .faq__answer {
  display: none;
}

.single__inner-wrap .single__faq.active .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__inner-wrap .active .tp-supervision-text{
	display: block !important;
}

.single__inner-wrap .faq__question {
  cursor: pointer;
}

.single__inner-wrap .faq__question .faq__content{
	font-weight: bold;
}

.single__inner-wrap .faq__content-arrow {
  position: absolute;
  right: 5px;
  display: inline-block;
  vertical-align: middle;
/*   color: #B3DAEA; */
  line-height: 1;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  border: 2px solid #333;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  top: 50%;
}

.single__inner-wrap .single__faq.active .faq__content-arrow {
  -webkit-transform: translateY(-55%) rotate(-45deg);
  transform: translateY(-55%) rotate(-45deg);
  top: 50%;
}

.single__inner-wrap .single__box {
  padding: 40px;
  border: 1px solid #B3DAEA;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box {
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box-item {
  padding-left: 25px;
  position: relative;
  font-size: 18px;
  padding-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-item {
    font-size: 1rem;
  }
}

.single__inner-wrap .single__box-item:last-child {
  padding-bottom: 0;
}

.single__inner-wrap .single__box-item::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #7e6501;
  border-radius: 999px;
  left: 0;
  display: block;
  top: 6px;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-item::before {
    top: 4px;
  }
}

.single__inner-wrap .single__box-bg-blue {
  padding: 30px;
  background: #F2FCFD;
  border: 2px solid #4FC3F7;
}

.single__inner-wrap .single__box-bg-red{
	  padding: 60px;
	  background: #FEF3F7;
	  border: 2px solid #EC407A;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-bg-blue,
	.single__inner-wrap .single__box-bg-red{
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box-bg-blue-item,
.single__inner-wrap .single__box-bg-red-item{
  padding-left: 25px;
  position: relative;
  font-size: 16px;
  padding-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-bg-blue-item,
	.single__inner-wrap .single__box-bg-red-item{
    font-size: 1rem;
  }
}

.single__inner-wrap .single__box-bg-blue-item:last-child,
.single__inner-wrap .single__box-bg-red-item:last-child{
  padding-bottom: 0;
}

.single__inner-wrap .single__box-bg-blue-item::before,
.single__inner-wrap .single__box-bg-red-item::before{
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  left: 0;
  display: block;
  top: 5px;
}

.single__inner-wrap .single__box-bg-blue-item::before{
	background: #4FC3F7;
}

.single__inner-wrap .single__box-bg-red-item::before{
	background: #EC407A;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-bg-blue-item::before,
	.single__inner-wrap .single__box-bg-red-item::before{
    top: 4px;
  }
}

.single__inner-wrap .single__box02 {
  padding: 30px;
/*   border: 1px solid #B3DAEA; */
}

.single__inner-wrap .check-box-green{
	border: 2px solid #9CCC65;
	background-color: #FAFFF4;
}

.single__inner-wrap .check-box-yellow{
	border: 2px solid #FFCA28;
	background-color: #FFFBEE;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box02 {
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box02-item {
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  padding-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box02-item {
    font-size: 1rem;
  }
}

.single__inner-wrap .single__box02-item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 16px;
  height: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  top: 3px;
}

.single__inner-wrap .check-box-green .single__box02-item:before{
	background-image: url(https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-check-green.png);
}

.single__inner-wrap .check-box-yellow .single__box02-item:before{
	background-image: url(https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-check-yellow.png);
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box02-item:before {
    top: 4px;
  }
}

.single__inner-wrap .single__point {
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.3571428571;
  padding: 40px 30px;
/*   padding: 3rem 2.25rem 1.875rem 3rem; */
/*   position: relative; */
}

.single__inner-wrap .single__point-normal{
	background: #fff;
	border: 1px solid #7e6501;
}

.single__inner-wrap .single__point-bg-yellow{
	background: #FFFBEE;
	border: 1px solid #FFCA28;
}

.single__inner-wrap .single__point-bg-pink{
	background: #FEF3F7;
	border: 1px solid #EC407A;
}

.single__inner-wrap .single__point-normal .single__point-title-block{
	padding:10px 20px;
}

.single__inner-wrap .single__point-title-block{
	position: absolute;
	width: fit-content;
	padding: 10px 50px 10px 20px;
	transform: translate(0%, -100%);
	top: 0;
	left: 0;
}

.single__inner-wrap .single__point-normal .single__point-title-block{
	background: #7e6501;
	border: 1px solid #7e6501;
	color: #fff;
}

.single__inner-wrap .single__point-bg-yellow .single__point-title-block{
	background: #FFCA28;
	border: 1px solid #FFCA28;
	color: #fff;
}

.single__inner-wrap .single__point-bg-pink .single__point-title-block{
	background: #EC407A;
	border: 1px solid #EC407A;
	color: #fff;
}

.single__inner-wrap .single__point-bg-pink .single__point-title-block:before,
.single__inner-wrap .single__point-bg-yellow .single__point-title-block:before{
  content: "";
  display: inline-block;
  background-image: url("https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-point.png");
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: contain;
  position: absolute;
	transform: translate(0%, -45%);
  top: 50%;
  right: 15px;
/*   z-index: -1; */
}



.single__inner-wrap .single__point-title {
  letter-spacing: 0.02em;
  font-size: 20px;
	font-weight: bold;
}

.single__inner-wrap .single__point02 {
  background-image: url(../img/single/img-point02-border.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.3571428571;
  padding: 48px 36px 30px 48px;
  padding: 3rem 2.25rem 1.875rem 3rem;
  position: relative;
}

.single__inner-wrap .single__point02:before {
  content: "";
  border: 1px solid #B3DAEA;
  border-radius: 999px;
  width: 150px;
  width: 9.375rem;
  height: 150px;
  height: 9.375rem;
  position: absolute;
  left: -20px;
  left: -1.25rem;
  top: -20px;
  top: -1.25rem;
  z-index: -1;
}

.single__inner-wrap .single__point02-title {
  letter-spacing: 0.02em;
  color: #8a7340;
  font-family: "Julius Sans One";
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: -40px;
  margin-top: -2.5rem;
  margin-left: -36px;
  margin-left: -2.25rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

.single__inner-wrap .single__summary {
  background-image: url(../img/single/img-matome-bg.webp);
  padding: 8px 10px;
  padding: 0.5rem 0.625rem;
}

.single__inner-wrap .single__summary-inner {
  background: #fff;
  padding: 30px 30px;
  padding: 1.875rem 1.875rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__summary-inner {
    padding: 25px 20px;
  }
}

.single__inner-wrap .single__summary-title {
  letter-spacing: 0.02em;
  color: #8a7340;
  font-family: "Julius Sans One";
  font-size: 30px;
  font-size: 1.875rem;
  border-bottom: 1px solid #B3DAEA;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.single__inner-wrap .single__summary-content {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.3571428571;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
.single__inner-wrap .single__read{
	position: relative;
}

.single__inner-wrap .single__read-badge {
  display: inline-block;
	color: #fff;
  background: #7e6501;
  border: 1px solid #7e6501;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding: 8px 45px 8px 55px;
	position: absolute;
	top: 0;
	left: 30px;
	transform: translate(0%, -50%);
	z-index: 2;
}

.single__inner-wrap .single__read-badge::before{
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url("https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-article.png");
	background-position: center;
	background-size: contain;
	position: absolute;
	transform: translate(0%, -50%);
	top: 50%;
	left: 20px;
}

.single__inner-wrap .single__read-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #7e6501;
  padding: 35px 20px;
/*   padding: 1.25rem 1.875rem; */
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__read-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.single__inner-wrap .single__read-box-left {
  border-radius: 1.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  margin-right: 20px !important;
  margin-right: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__read-box-left {
    margin-right: 0rem !important;
  }
}

.single__inner-wrap .single__read-box-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.single__inner-wrap .single__read-box-right .latest-top__grid-item-label-link {
  display: inline-block;
}

.single__inner-wrap .single__read-box-right .latest-top__grid-item-title:after {
  content: none;
}

.single__inner-wrap .marker-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFFF66));
  background: linear-gradient(transparent 50%, #FFFF66 50%);
}

.single__inner-wrap .marker-green {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #CCFF99));
  background: linear-gradient(transparent 50%, #CCFF99 50%);
}

.single__inner-wrap .marker-blue {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #CCFFFF));
  background: linear-gradient(transparent 50%, #CCFFFF 50%);
}

.single__inner-wrap .marker-red {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #FFCCCC));
  background: linear-gradient(transparent 50%, #FFCCCC 50%);
}

.single__inner-wrap .single__box-emphasis {
  -webkit-box-shadow: 0 2px 8px rgba(61, 61, 61, .3);
  box-shadow: 0 2px 8px rgba(61, 61, 61, .3);
  border-radius: 10px;
  overflow: hidden;
}

.single__inner-wrap .single__box-emphasis-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
  background: #7e6501;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-emphasis-title {
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box-emphasis-content {
  padding: 20px 40px;
  padding: 1.25rem 2.5rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-emphasis-content {
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box-emphasis-content-item {
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

.single__inner-wrap .single__box-emphasis-content-item:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #7e6501;
  border-radius: 999px;
  left: 0;
  display: block;
  top: 2px;
  top: 0.125rem;
}

.single__inner-wrap .single__box-emphasis02 {
  padding: 50px 40px;
}

.single__inner-wrap .single__box-emphasis-bg-blue{
	background-color: #f8f5ef;
}

.single__inner-wrap .single__box-emphasis-bg-yellow{
	background-color: #FFFBEE;
}

.single__inner-wrap .single__box-emphasis-bg-purple{
	background-color: #F5F5F5;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-emphasis02 {
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box-emphasis02-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.single__inner-wrap .single__box-emphasis02-text{
	line-height: 1.7;
}

.single__inner-wrap .single__box-emphasis02-content-item {
  padding-left: 15px;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

.single__inner-wrap .single__box-emphasis02-content-item:last-child {
  padding-bottom: 0;
}

/* .single__inner-wrap .single__box-emphasis02-content-item:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background: #3D3D3D;
  border-radius: 999px;
  left: 0;
  display: block;
  top: 8px;
} */

.single__inner-wrap .single__box-emphasis03 {
  border-radius: 10px;
  padding: 20px;
  padding: 1.25rem;
  background-image: url(../img/single/img-box-emphasis03.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.single__inner-wrap .single__box-emphasis03-inner {
  padding: 30px 40px;
  padding: 1.875rem 2.5rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-emphasis03-inner {
    padding: 1.875rem 1.25rem;
  }
}

.single__inner-wrap .single__box-emphasis03-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #7e6501;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.single__inner-wrap .single__box-emphasis03-content-item {
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  letter-spacing: 0.04em;
  line-height: 1.3333333333;
}

.single__inner-wrap .single__box-emphasis03-content-item:last-child {
  padding-bottom: 0;
}

.single__inner-wrap .single__box-emphasis03-content-item:before {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../img/single/merit01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0px;
}

.single__inner-wrap .single__box-emphasis04 {
  padding: 30px 30px 20px;
  padding: 1.875rem 1.875rem 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.single__inner-wrap .single__box-emphasis04-gray{
	border: 1px solid #BDBDBD;
	color: #BDBDBD;
}

.single__inner-wrap .single__box-emphasis04-green{
	border: 1px solid #9CCC65;
	color: #9CCC65;
}

.single__inner-wrap .single__box-emphasis04-title {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: -55px;
  margin-top: -3.4375rem;
  background: #fff;
  padding: 10px 20px 10px 60px;
  position: absolute;
}

.single__inner-wrap .single__box-emphasis04-title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: contain;
  position: absolute;
  transform: translate(0%, -50%);
  top: 50%;
  left: 10px;
}

.single__inner-wrap .single__box-emphasis04-gray .single__box-emphasis04-title::before{
	background-image: url('https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-bookmark-gray.png');
}

.single__inner-wrap .single__box-emphasis04-green .single__box-emphasis04-title::before{
	background-image: url('https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-bookmark-green.png');
}

.single__inner-wrap .single__box-emphasis04-text {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
	color: #333;
}

.single__inner-wrap .single__box-emphasis05 {
  border: 2px solid #8a7340;
  padding: 30px 30px 20px;
  padding: 1.875rem 1.875rem 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.single__inner-wrap .single__box-emphasis05-title {
  color: #8a7340;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: -55px;
  margin-top: -3.4375rem;
  background: #fff;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  position: absolute;
}

.single__inner-wrap .single__box-emphasis05-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  letter-spacing: 0.02em;
}

.single__inner-wrap .single__box-carefully {
  background: #FFF5F8;
  padding: 50px 40px;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-carefully {
    padding: 20px 20px;
  }
}

.single__inner-wrap .single__box-carefully-content {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding-left: 60px;
  position: relative;
}

.single__inner-wrap .single__box-carefully-content:before {
  content: "";
  background-image: url(https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-warning.png);
  width: 48px;
  height: 48px;
  position: absolute;
  background-position: center;
  background-size: contain;
  position: absolute;
  transform: translate(0%, -55%);
  top: 50%;
  left: 0;
}

.single__inner-wrap .single__box-carefully-content .text-red{
	color: #E53935;
}


.single__inner-wrap .single__box-carefully-content .text-bold{
	font-weight: bold;
}

.single__inner-wrap .single__box-quote {
  background: #F5F5F5;
	padding: 50px 40px;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__box-quote {
    padding: 20px 20px;
  }
}

.single__inner-wrap .single__box-quote-content {
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  padding-left: 60px;
  position: relative;
}

.single__inner-wrap .single__box-quote-content:before {
  content: "";
  background-image: url(https://oculofacial-clinic.mark1-web.com/wp-admin/images/module-icon-quote.png);
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  position: absolute;
  background-size: contain;
  left: 0;
}

.single__inner-wrap .single__prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  gap: 2.5rem;
  padding: 20px;
  padding: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__prevnext {
    grid-template-columns: 1fr;
  }
}

.single__inner-wrap .single__prevnext-prev-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 4px #d9d9d9;
  box-shadow: 0 0 4px #d9d9d9;
  padding: 20px;
  padding: 1.25rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.single__inner-wrap .single__prevnext-prev-flex-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  margin-right: 20px !important;
  margin-right: 1.25rem;
}

.single__inner-wrap .single__prevnext-prev-flex-img img {
  aspect-ratio: 1/1;
  border-radius: 0;
}

.single__inner-wrap .single__prevnext-prev-flex-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.single__inner-wrap .single__prevnext-prev-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #3D3D3D;
  line-height: 1;
  position: relative;
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  -webkit-transform: translateX(25%) rotate(-135deg);
  transform: translateX(25%) rotate(-135deg);
  top: -2px;
  top: -0.125rem;
}

.single__inner-wrap .single__prevnext-prev-arrow::before,
.single__inner-wrap .single__prevnext-prev-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.single__inner-wrap .single__prevnext-prev-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  height: 0.0625rem;
}

.single__inner-wrap .single__prevnext-prev-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  width: 0.0625rem;
}

.single__inner-wrap .single__prevnext {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  line-height: 1.4615384615;
}

.single__inner-wrap .single__prevnext-next .single__prevnext-prev-arrow {
  -webkit-transform: translateX(25%) rotate(45deg);
  transform: translateX(25%) rotate(45deg);
}

.single__inner-wrap .single__prevnext-next .single__prevnext-prev {
  text-align: right;
}

.single__inner-wrap .single__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
  padding: 20px;
  padding: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__grid {
    grid-template-columns: 1fr 1fr;
    padding: 0px;
  }
}

.single__inner-wrap .single__grid-item-title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.0555555556;
  color: #8a7340;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__grid-item-title {
    font-size: 1rem;
  }
}

.single__inner-wrap .single__grid-item-text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.3571428571;
  text-align: center;
}

.single__inner-wrap .blockquote {
  padding: 20px;
  padding: 1.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  line-height: 1.4615384615;
  position: relative;
}

.single__inner-wrap .blockquote:before {
  content: "";
  position: absolute;
  left: 0;
  width: 21px;
  width: 1.3125rem;
  height: 16px;
  height: 1rem;
  background-image: url(../img/single/blockquote-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0px;
}

.single__inner-wrap .blockquote::after {
  content: "";
  position: absolute;
  right: 0;
  width: 21px;
  width: 1.3125rem;
  height: 16px;
  height: 1rem;
  background-image: url(../img/single/blockquote-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.single__inner-wrap .blockquote__bottom {
  padding-top: 10px;
  padding-top: 0.625rem;
  text-align: right;
}

.single__inner-wrap .blockquote__bottom a:hover {
  opacity: 1;
  color: #7e6501;
  text-decoration: underline;
}

.single__inner-wrap .single__category-list-title {
  color: #8a7340;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #8a7340;
}

.single__inner-wrap .single__category-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__category-list-grid {
    grid-template-columns: 1fr;
  }
}

.single__inner-wrap .single__category-list-item-title {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  background: #f3efe6;
  padding: 10px;
  padding: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.single__inner-wrap .single__category-list-item-content {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
}

.single__inner-wrap .single__category-list-item-content-item-link {
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  font-size: 1rem;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single__inner-wrap .single__category-list-item-content-item-link:hover {
  color: #7e6501;
  text-decoration: underline;
}

.single__inner-wrap .single__category-list-item-content-item {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.single__inner-wrap .single__category-list-item-content-item:last-child {
  margin-bottom: 0px;
  margin-bottom: 0rem;
}

.single__inner-wrap .single__category-list-item-content-item-link .latest__flex-sidebar-item-title-list-item-arrow {
  top: 4px;
}

.single__inner-wrap .single__category-list-item-content-item-link:hover .latest__flex-sidebar-item-title-list-item-arrow {
  color: #7e6501;
}


@media(min-width: 767px){
	.single__inner-wrap .single__case-images,
	.single__inner-wrap .single__case-text-box{
		display: flex;
		justify-content: space-between;
	}
	
	.single__inner-wrap .single__case-img-before,
	.single__inner-wrap .single__case-img-after,
	.single__inner-wrap .single__case-comment,
	.single__inner-wrap .single__case-detail{
		width: 48%
	}
}

.single__inner-wrap .single__case-img-before,
.single__inner-wrap .single__case-img-after{
	position: relative;
	margin-bottom: 30px;
}

.single__inner-wrap .single__case-comment,
.single__inner-wrap .single__case-detail{
	margin-bottom: 30px;
}

.single__inner-wrap .single__case-before-title,
.single__inner-wrap .single__case-after-title{
	position: absolute;
	width: 140px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	text-align: center;
	top: 0;
	left: 0;
	color: #fff;
}

.single__inner-wrap .single__case-before-title{
	background-color: #757575;
}

.single__inner-wrap .single__case-after-title{
	background-color: #ECA992;
}

.single__inner-wrap .single__case-comment-title,
.single__inner-wrap .single__case-detail-title{
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 1px dashed #333;
	margin-bottom: 30px;
}


.single__inner-wrap .single__case-comment-text{
	line-height: 1.5;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.single__inner-wrap .case-list-dl{
	display: flex;
	margin-bottom: 10px;
}

.single__inner-wrap .case-list-dt{
	width: 40%;
	font-weight: normal;
}

.single__inner-wrap .case-list-dd{
	width: 60%;
	font-weight: normal;
}


/* .single__inner-wrap .single__case-flex {
  gap: 10px;
  gap: 0.625rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.single__inner-wrap .single__case-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #8a7340;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #8a7340;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__case-head {
    font-size: 1rem;
  }
}

.single__inner-wrap .single__case-head-icon {
  padding-right: 30%;
  font-family: "Julius Sans One";
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__case-head-icon {
    padding-right: 1.25rem;
  }
}

.single__inner-wrap .single__case-item-title {
  text-align: center;
  color: #fff;
  background: #7e6501;
  padding: 10px;
  padding: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.single__inner-wrap .single__case-item-img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
  object-fit: cover;
}

.single__inner-wrap .single__case .single-table-head-left td:first-child {
  padding: 9px;
  background: #f3efe6;
  border: solid 1px #BCDAE4;
  font-size: 13px;
  text-align: center;
} */

.single__inner-wrap .single__feature {
/*   margin-top: 60px; */
  display: flex;
	padding: 30px;
}

@media(max-width: 767px){
	.single__inner-wrap .single__feature {
	  display: block;
	  padding: 20px;
	}
}

.single__inner-wrap .single__feature-left-img{
	background: linear-gradient(to right, #fff 0%, #fff 40%, #f8f5ef 40%, #f8f5ef 100%);
}

.single__inner-wrap .single__feature-right-img{
	background: linear-gradient(to right, #f8f5ef 0%, #f8f5ef 60%, #fff 60%, #fff 100%);
	flex-direction: row-reverse;
}


.single__inner-wrap .single__feature-normal-left-img{
	background-color: #f8f5ef;
}

.single__inner-wrap .single__feature-normal-right-img{
	background-color: #f8f5ef;
	flex-direction: row-reverse;
}

@media(min-width: 767px){
	.single__inner-wrap .single__feature img{
		width: 45%;
		object-fit: contain;
	}

	.single__inner-wrap .single__feature-left-img img{
		padding-right: 30px;
	}

	.single__inner-wrap .single__feature-right-img img{
		padding-left: 30px;
	}

	.single__inner-wrap .single__feature .single__feature-text-box{
		width: 55%;
	}

	.single__inner-wrap .single__feature-normal-left-img .single__feature-text-box{
		padding-left: 30px;
	}

	.single__inner-wrap .single__feature-normal-right-img .single__feature-text-box{
		padding-right: 30px;
	}
}

@media(max-width: 767px){
	.single__inner-wrap .single__feature img{
		width: 100%;
		object-fit: contain;
		margin-bottom: 30px;
	}
}

.single__inner-wrap .single__feature .single__feature-text-box .single__feature-title{
	font-size: 24px;
	color: #7e6501;
	font-weight: bold;
	margin-bottom: 20px;
}

.single__inner-wrap .single__feature .single__feature-text-box .single__feature-text{
	line-height: 1.5;
    letter-spacing: 0.02em;
}

/* .single__inner-wrap .single__feature-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__feature-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.single__inner-wrap .single__feature-flex:first-child {
  margin-top: 0;
}

.single__inner-wrap .single__feature-flex-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 48%;
  flex: 0 1 48%;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__feature-flex-left {
    margin-top: 1.875rem;
  }
}

.single__inner-wrap .single__feature-flex-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.single__inner-wrap .single__feature-flex-left-img {
  padding-left: 20%;
  position: relative;
}

.single__inner-wrap .single__feature-flex-left-img:before {
  content: "";
  background-image: url(../img/single/single__feature-flex-left-img.webp);
  width: 60%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  padding-right: 40px;
  left: 0;
  top: 20px;
  z-index: -2;
} */

.single__inner-wrap .single__feature-flex-left-img::after {
  content: "";
  width: 80%;
  height: 100%;
  border: 1px solid #8a7340;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: -20px;
  top: -1.25rem;
  z-index: -1;
}

.single__inner-wrap .single__feature-flex-right-title {
  font-family: "Julius Sans One";
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: right;
  color: #7e6501;
}

.single__inner-wrap .single__feature-flex-right-subtitle {
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.single__inner-wrap .single__feature-flex-right-text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  line-height: 1.4615384615;
}

.single__inner-wrap .single__feature-flex-reverse {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width:767px) {
  .single__inner-wrap .single__feature-flex-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 3.75rem;
  }
}

.single__inner-wrap .single__feature-flex-reverse .single__feature-flex-right-title {
  text-align: left;
}

.single__inner-wrap .single__feature-flex-reverse .single__feature-flex-left-img {
  padding-right: 20%;
  padding-left: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.single__inner-wrap .single__feature-flex-reverse .single__feature-flex-left-img:before {
  top: 0;
  width: 60%;
  left: auto;
  right: 0;
}

.single__inner-wrap .single__feature-flex-reverse .single__feature-flex-left-img::after {
  content: none;
} */

.temp-single__inner-wrap .single__inner {
  padding-top: 0;
}

@media screen and (max-width:767px) {
  .temp-single__inner-wrap .single__inner {
    padding-top: 0;
  }
}

.temp-single__inner-wrap .single__flex-sidebar {
  margin-top: 50px;
}

.temp-single__inner-wrap .single-head__title {
  font-size: 34px;
}

@media screen and (max-width:767px) {
  .temp-single__inner-wrap .single-head__title {
    font-size: 24px;
  }
}

.single__flex-content-category-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media screen and (max-width:767px) {
  .single__flex-content-category-head {
    flex-direction: column-reverse;
  }
}

.single__flex-content-category {
  display: flex;
  gap: 10px;
  margin-top: 0;
  flex-wrap: wrap;
}


.single__flex-content-time {
  color: #3D3D3D;
  white-space: nowrap;
}

@media screen and (max-width:767px) {
  .single__flex-content-time {
    text-align: right;
  }
}

.single__flex-content-category-item {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6153846154;
  background: #3D3D3D;
  color: #fff;
  padding: 3px 15px;
  padding: 0.1875rem 0.9375rem;
}

@media screen and (max-width:767px) {
  .single__flex-content-category-item {
    padding: 0.1875rem 0.625rem;
  }
}

.sns__container {
  display: none;
  max-width: 260px;
  gap: 10px;
}

.temp-single__head-img img {
  aspect-ratio: 356/235;
  object-fit: cover;
  border-radius: 20px;
}


.archive-latest .latest__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.archive-latest .single__flex-sidebar {
  padding-right: 0;
}

.archive-latest .latest__flex-left {
  padding-left: 0;
}

@media screen and (max-width:767px) {
  .archive-latest .latest__flex-left {
    padding-right: 0;
  }
  .archive-latest .latest__inner{
    padding-top: 5.25em;
  }
}

.archive-latest .latest__inner:after {
  content: none;
}

.archive-latest .latest-top:after {
  content: none;
}


.nav-links {
  text-align: center;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-links>a,
.nav-links>span {
  display: inline-block;
  height: 34px;
  width: 33px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links .current {
  background-color: #7e6501;
  color: #ffffff;
}

.nav-links a {
  background-color: #f0f0f0;
  color: #7e6501;
}

.nav-links a:hover {
  background-color: #7e6501;
  color: #ffffff;
}



.nav-arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #7e6501;
  border-right: 1px solid#7e6501;
  transform: rotate(-135deg);
  position: relative;
  right: -2px;
}

.nav-links .prev:hover .nav-arrow::before {
  border-top: 1px solid #ffffff;
  border-right: 1px solid#ffffff;
}

.nav-arrow-right::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #7e6501;
  border-left: 1px solid#7e6501;
  transform: rotate(-135deg);
  position: relative;
  right: 2px;
}




.nav-links .next:hover .nav-arrow-right::before {
  border-bottom: 1px solid #ffffff;
  border-left: 1px solid#ffffff;
}


.single-head__content-404 .top-button-blue {
  margin-top: 40px;
}
.doctor-text{
	line-height: 1.8;
}

.elementor-widget-text-editor p{
	line-height: 1.6;
	font-size: 15px;
}

/* ブログ グループ医院一覧 */
#single_map_area h2 {
	font-size: 28px;
    font-family: serif;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
	margin-bottom: 2rem;
}

#single_map_area h2::before {
	content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
    width: 40px;
    height: 40px;
    background-color: #f8f5ef;
    z-index: -2;
}

#single_map_area .map_box .tabs {
	display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1px;
}

#single_map_area .map_box .tabs .tab {
	width: calc((100% - 4px) / 5);
    background-color: #E6E6E4;
    padding: 0.8rem 0.8rem 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
	border-top: solid 1px #E6E6E4;
	border-left: solid 1px #E6E6E4;
	border-right: solid 1px #E6E6E4;
    border-bottom: solid 10px #BBBBBB;
}

#single_map_area .map_box .tabs .tab.active {
	background-color: #fff;
	border-top: solid 1px #BBBBBB;
    border-left: solid 1px #BBBBBB;
    border-right: solid 1px #BBBBBB;
}

#single_map_area .map_box .tabs .tab:first-of-type.active {
	border-bottom: solid 10px #A92930;
}

#single_map_area .map_box .tabs .tab:nth-of-type(2).active {
	border-bottom: solid 10px #AA450F;
}

#single_map_area .map_box .tabs .tab:nth-of-type(3).active {
	border-bottom: solid 10px #B24674;
}

#single_map_area .map_box .tabs .tab:nth-of-type(4).active {
	border-bottom: solid 10px #7e6501;
}

#single_map_area .map_box .tabs .tab:nth-of-type(5).active {
	border-bottom: solid 10px #7E6501;
}

#single_map_area .map_box .content {
	display: none;
}

#single_map_area .map_box .content.active {
	border: solid 1px #BBBBBB;
	padding: 2rem;
	border: solid 1px #BBBBBB;
    padding: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
}

#single_map_area .map_box .content .map_info {
	width: calc(50% - 10px);
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#single_map_area .map_box .content .map_info h3 {
	font-size: 18px;
    font-weight: 600;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
	width: 100%;
}

#single_map_area .map_box .content .map_info h3 span {
	display: block;
    font-size: 14px;
    font-weight: 600;
	margin-bottom: 5px;
}

#single_map_area .map_box .content.tokyo .map_info h3 {
	border-bottom: solid 2px #a92930;
}

#single_map_area .map_box .content.gunma .map_info h3 {
	border-bottom: solid 2px #AA450F;
}

#single_map_area .map_box .content.chiba .map_info h3 {
	border-bottom: solid 2px #B24674;
}

#single_map_area .map_box .content.osaka .map_info h3 {
	border-bottom: solid 2px #7e6501;
}

#single_map_area .map_box .content.kyoto .map_info h3 {
	border-bottom: solid 2px #7E6501;
}

#single_map_area .map_box .content .map_info .map_info_txt h4 {
	font-size: 18px;
	font-weight: 600;
	position: relative;
    padding-left: 20px;
}

#single_map_area .map_box .content .map_info .map_info_txt h4::before {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
	left: 0;
}

#single_map_area .map_box .content .map_info .map_info_txt h4:first-of-type::before {
	content: "\f3c5";
}

#single_map_area .map_box .content .map_info .map_info_txt h4:nth-of-type(2)::before {
	content: "\f239";
}

#single_map_area .map_box .content .map_info .map_info_txt h4:nth-of-type(3)::before {
	content: "\f073";
}

#single_map_area .map_box .content.tokyo .map_info .map_info_txt h4::before {
	color: #a92930;
}

#single_map_area .map_box .content.gunma .map_info .map_info_txt h4::before {
	color: #AA450F;
}

#single_map_area .map_box .content.chiba .map_info .map_info_txt h4::before {
	color: #B24674;
}

#single_map_area .map_box .content.osaka .map_info .map_info_txt h4::before {
	color: #7e6501;
}

#single_map_area .map_box .content.kyoto .map_info .map_info_txt h4::before {
	color: #7E6501;
}

#single_map_area .map_box .content .map_info .map_info_txt p {
	margin: 0.5rem 0 1rem;
	font-size: 14px;
    line-height: 1.4;
}

#single_map_area .map_box .content .map_info .map_info_txt p:last-of-type {
	margin-bottom: 2rem;
}

#single_map_area .map_box .content .gmap {
	width: calc(50% - 10px);
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

#single_map_area .map_box .content .gmap iframe {
	width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

#single_map_area .map_box .content .gmap a.map_btn,
#single_map_area .map_box .content .map_info a.map_btn {
	position: relative;
    color: #fff;
    padding: 15px 0;
    border-radius: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin: 0 auto;
}

#single_map_area .map_box .content .gmap a::after,
#single_map_area .map_box .content .map_info a.map_btn::after {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    position: absolute;
    right: 20px;
    top: 52%;
    transform: translateY(-48%);
    font-size: 0.8rem;
}

#single_map_area .map_box .content.tokyo .gmap a.map_btn,
#single_map_area .map_box .content.tokyo .map_info a.map_btn {
	background-color: #a92930;
}

#single_map_area .map_box .content.gunma .gmap a.map_btn,
#single_map_area .map_box .content.gunma .map_info a.map_btn {
	background-color: #AA450F;
}

#single_map_area .map_box .content.chiba .gmap a.map_btn,
#single_map_area .map_box .content.chiba .map_info a.map_btn {
	background-color: #B24674;
}

#single_map_area .map_box .content.osaka .gmap a.map_btn,
#single_map_area .map_box .content.osaka .map_info a.map_btn {
	background-color: #7e6501;
}

#single_map_area .map_box .content.kyoto .gmap a.map_btn,
#single_map_area .map_box .content.kyoto .map_info a.map_btn {
	background-color: #7E6501;
}

@media screen and (max-width: 767px) {
    #single_map_area h2 {
        font-size: 1.5rem;
    }
	
	#single_map_area .map_box .tabs {
		flex-wrap: wrap;
	}
	
	#single_map_area .map_box .tabs .tab {
		width: calc((100% - 3px) / 3);
		border-bottom: solid 3px #BBBBBB;
	}
	
	#single_map_area .map_box .tabs .tab:first-of-type.active {
		border-bottom: solid 3px #A92930;
	}

	#single_map_area .map_box .tabs .tab:nth-of-type(2).active {
		border-bottom: solid 3px #AA450F;
	}

	#single_map_area .map_box .tabs .tab:nth-of-type(3).active {
		border-bottom: solid 3px #B24674;
	}

	#single_map_area .map_box .tabs .tab:nth-of-type(4).active {
		border-bottom: solid 3px #7e6501;
	}

	#single_map_area .map_box .tabs .tab:nth-of-type(5).active {
		border-bottom: solid 3px #7E6501;
	}
	
	#single_map_area .map_box .content.active {
		flex-direction: column;
		padding: 2rem 1rem;
		gap: 40px;
	}
	#single_map_area .map_box .content .map_info {
		width: 100%;
	}
	#single_map_area .map_box .content .map_info .map_info_txt {
		width: 100%;
	}
	#single_map_area .map_box .content .gmap {
		width: 100%;
	}
	#single_map_area .map_box .content .gmap iframe {
		margin-bottom: 2rem;
	}
}

.single__box02.check-box-green .single__box02-item::before{
	top: 0;
}