@charset "UTF-8";
/*!
Theme Name: スタックストリートメント
Theme URI:
Description: スタックストリートメント
*/
/* CSS Document */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からフェードイン */
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s, transform 2s;
}

.fadeUpActive {
  opacity: 1;
  transform: translateY(0);
}

.rotate-txt {
  align-items: center !important;
  display: flex !important;
  position: relative !important;
}
.rotate-txt span {
  overflow: hidden;
  position: relative;
  transition: opacity 0.6s, transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
  display: block;
}
.rotate-txt:nth-of-type(1) {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}
.rotate-txt .outer {
  opacity: 0;
  position: absolute;
  transform: translateY(-90%) scaleY(0);
}
@media screen and (max-width: 767px) {
  .rotate-txt .outer {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .rotate-txt:hover span:nth-of-type(1) {
    opacity: 0;
    transform: translateY(90%) scaleY(0);
  }
  .rotate-txt:hover span.outer {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

div:has(.loop-wrap) {
  overflow-x: clip;
}

.loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 0 80px;
  width: 8400px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: 0.4s anime1;
}
@media screen and (max-width: 767px) {
  .loop-wrap {
    padding: 104px 0 34px;
  }
}
.loop-wrap li {
  display: flex;
  animation: loop-slide 50s infinite linear 1s both;
}
.loop-wrap li img {
  height: 250px;
  width: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .loop-wrap li img {
    height: 53px;
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.flowing-link .flowing-arrow {
  overflow: hidden;
  position: absolute;
  width: 115px;
  height: 50px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flowing-link .flowing-arrow {
    top: 0;
    bottom: 0;
    right: 4px;
    width: 40px;
    height: 20px;
    margin: auto;
  }
}
.flowing-link .flowing-arrow::before, .flowing-link .flowing-arrow::after {
  content: url(img/icon-arrow01.svg);
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
@media screen and (max-width: 767px) {
  .flowing-link .flowing-arrow::before, .flowing-link .flowing-arrow::after {
    content: url(img/icon-arrow01-sp.svg);
    width: 42px;
    height: 6px;
  }
}
.flowing-link .flowing-arrow::after {
  transform: translateX(-100%);
}
.flowing-link a:hover .flowing-arrow::before {
  animation-name: transformRightLeft;
  animation-delay: 0s;
}
.flowing-link a:hover .flowing-arrow::after {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.txt-link {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  color: #0e293c;
  font-size: 0.875rem;
  display: inline-block;
  position: relative;
  padding: 0 22px 0 14px;
  border-radius: 50px;
  border: 1px solid #0e293c;
}
.txt-link .flowing-arrow {
  overflow: hidden;
  position: absolute;
  width: 28px;
  height: 14px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .txt-link .flowing-arrow {
    top: -1px;
    right: -16px;
    left: unset;
  }
}
@media screen and (max-width: 767px) {
  .txt-link .flowing-arrow {
    top: -2px;
    right: -27px;
    width: 40px;
    height: 20px;
    margin: auto;
    left: unset;
  }
}
.txt-link .flowing-arrow::before, .txt-link .flowing-arrow::after {
  content: url(img/icon-arrow02.svg);
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: forwards;
  animation-duration: 0.6s;
}
@media screen and (max-width: 767px) {
  .txt-link .flowing-arrow::before, .txt-link .flowing-arrow::after {
    content: url(img/icon-arrow02.svg);
    width: 42px;
    height: 6px;
  }
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-break: normal;
}

body {
  font-family: "Noto sans JP", "Hiragino Kaku Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, sans-serifsans-serif;
  font-weight: 400;
  position: relative;
  background: #fff;
  color: #000;
  margin: 0;
}

section {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}

@media screen and (min-width: 1101px) {
  .inner {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .inner {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
    margin: auto;
    padding: 0 10px;
  }
}

p {
  font-size: 1rem;
}

@media screen and (min-width: 1101px) {
  br.pc-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  br.pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
}

a {
  text-decoration: none;
  transition: all ease-in 0.3s;
}
a:hover {
  transition: all ease-in 0.3s;
  opacity: 0.5;
}

.flexbox03 {
  display: flex;
  flex-wrap: wrap;
}

.page ul.icon-list li {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 0 30px;
}
.page ul.icon-list li::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 100px;
  background: #BF9D84;
  position: absolute;
  top: 7px;
  left: 0;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  padding: 10px 17px;
  text-align: center;
}
table td {
  background: #fff;
  padding: 10px 17px;
}
table:not([class]) th {
  background: #0C2C43;
  color: #fff;
  border: 1px solid #E1DDDA;
}
table:not([class]) td {
  border: 1px solid #E1DDDA;
}

@media screen and (min-width: 768px) {
  .gnav {
    mix-blend-mode: difference;
    position: fixed;
    z-index: 10;
    right: 24vw;
    top: 39px;
  }
  .gnav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .gnav ul li a {
    color: #d4d4d4;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    padding: 5px 1.8vw;
    position: relative;
    height: 80px;
  }
  .gnav ul li a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .gnav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .gnav {
    display: none;
  }
}

.nav-btn {
  display: block;
  color: #fff;
  background: #0e293c;
  border: 3px solid #BF9D84;
  text-align: center;
  padding: 27px 91px 25px 92px;
  font-size: 14px;
}
@media screen and (min-width: 1101px) {
  .nav-btn {
    position: fixed;
    z-index: 5;
    right: 31px;
    top: 40px;
  }
  .nav-btn:hover {
    opacity: 1;
    background-color: #BF9D84;
  }
}
@media (max-width: 1280px) and (min-width: 1100px) {
  .nav-btn {
    padding-left: 4vw;
    padding-right: 6vw;
  }
}
.nav-btn::before {
  content: "";
  background: url(img/icon-search.svg) no-repeat 0 0;
  width: 17px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 130px;
  display: block;
  margin: auto;
}
@media (max-width: 1280px) and (min-width: 1100px) {
  .nav-btn::before {
    right: 3vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .nav-btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .nav-btn {
    display: none;
  }
}

.hamburger-toggle {
  position: fixed;
  z-index: 10;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #0C2C43;
  border: 1px solid #BF9D84;
}
@media screen and (min-width: 1101px) {
  .hamburger-toggle {
    display: none;
  }
}
.hamburger-toggle .bar {
  width: 25px;
  height: 2px;
  background-color: #BF9D84;
  margin: 4px 0;
  transition: all ease-in 0.3s;
}
.hamburger-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
}
.hamburger-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
}

.hamburger-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 5;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .hamburger-menu-wrapper {
    display: none;
  }
}
.hamburger-menu-wrapper.open {
  transform: translateX(0);
  overflow: scroll;
  padding-top: 20vw;
  display: block;
}
.hamburger-menu-wrapper .hamburger-menu {
  padding: 24px 10px 0px;
}
.hamburger-menu-wrapper .hamburger-menu li {
  border-bottom: 1px solid #041B2B;
  margin-bottom: 4px;
}
.hamburger-menu-wrapper .hamburger-menu li:last-child {
  border: none;
}
.hamburger-menu-wrapper .hamburger-menu li a {
  font-size: 0.875rem;
  display: block;
  color: #000;
  padding: 12px 0;
}
.hamburger-menu-wrapper .nav-btn {
  display: block;
  margin: 20px 8vw 0;
  position: relative;
  padding: 8vw 2vw 7vw 2vw;
}
.hamburger-menu-wrapper .close-menu {
  font-size: 0.875rem;
  color: #000;
  display: block;
  padding: 20px;
  position: relative;
  text-align: center;
}
.hamburger-menu-wrapper .close-menu::before, .hamburger-menu-wrapper .close-menu::after {
  content: "";
  position: absolute;
  top: 30px;
  left: -81px;
  right: 0;
  margin: auto;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #BF9D84;
  transform-origin: center;
}
.hamburger-menu-wrapper .close-menu::before {
  transform: rotate(45deg);
}
.hamburger-menu-wrapper .close-menu::after {
  transform: rotate(-45deg);
}

body.body-fixed {
  height: 100%;
  overflow: hidden;
}

footer {
  background: #fff;
  border-top: 1px solid #000;
  position: relative;
  z-index: 0;
}
footer .breadcrumbs {
  position: absolute;
  top: -40px;
  left: 44px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  footer .breadcrumbs {
    left: 10px;
  }
}
footer .breadcrumbs a {
  font-size: 0.875rem;
}
footer .breadcrumbs .separator {
  display: inline-block;
  margin: 0 15px 0 7px;
}
footer .breadcrumbs .separator::before {
  content: "";
  width: 7px;
  height: 7px;
  background: url(img/icon-arrow03.svg) no-repeat 0 0/contain;
  display: block;
  top: 7px;
  position: absolute;
}
footer #pagetop {
  transition: all ease-in 0.3s;
  position: fixed;
  height: 151px;
  width: 31px;
  bottom: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  mix-blend-mode: difference;
}
@media screen and (max-width: 767px) {
  footer #pagetop {
    width: 16px;
    height: 77px;
  }
}
footer #pagetop:hover {
  transform: translateY(-10px);
}
@media screen and (min-width: 1101px) {
  footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  footer .footer-inner {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner {
    width: 100%;
    margin: auto;
    padding: 0 10px;
  }
}
@media screen and (min-width: 1101px) {
  footer .footer-inner {
    padding: 95px 0 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  footer .footer-inner {
    padding: 95px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner {
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  footer .footer-inner .footer-menu {
    display: flex;
  }
}
footer .footer-inner .footer-menu .footer-list {
  padding: 0;
  margin-top: 66px;
}
@media screen and (min-width: 768px) {
  footer .footer-inner .footer-menu .footer-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0;
    margin: 0;
  }
}
footer .footer-inner .footer-menu li {
  width: 25%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1101px) {
  footer .footer-inner .footer-menu li {
    width: 279px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  footer .footer-inner .footer-menu li {
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu li {
    border-bottom: 1px solid #041B2B;
    margin-bottom: 4px;
    width: 100%;
  }
  footer .footer-inner .footer-menu li:last-child {
    border: none;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu li .submenu {
    margin: -7px 0 9px;
    display: none;
  }
  footer .footer-inner .footer-menu li .submenu.open {
    display: block;
  }
}
footer .footer-inner .footer-menu li .submenu li {
  margin-bottom: 0;
  margin: 2px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu li .submenu li {
    border: none;
  }
}
footer .footer-inner .footer-menu li .submenu li a {
  font-size: 0.875rem;
  position: relative;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu li .submenu li a {
    padding: 5px 0 5px 26px;
  }
  footer .footer-inner .footer-menu li .submenu li a::before, footer .footer-inner .footer-menu li .submenu li a::after {
    display: none;
  }
}
footer .footer-inner .footer-menu li .submenu li a::before {
  content: "";
  width: 12px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 10px;
  left: 9px;
  display: block;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu li .submenu li a::before {
    top: 15px;
  }
}
footer .footer-inner .footer-menu li a {
  display: block;
}
@media screen and (max-width: 767px) {
  footer .footer-inner .footer-menu li a {
    font-size: 0.875rem;
    color: #000;
    padding: 12px 0;
  }
}
@media screen and (min-width: 1101px) {
  footer .footer-inner .footer-menu li:nth-of-type(4n) {
    width: 230px;
  }
}
footer .caution {
  background: #E1DDDA;
  margin: 45px 5px;
  padding: 24px;
}
@media screen and (min-width: 768px) {
  footer .caution {
    padding: 42px 75px 20px 58px;
    margin: 76px 0 0;
  }
}
footer .caution p {
  font-size: 0.875rem;
  line-height: 1.667;
  margin-bottom: 30px;
}
footer .copyright {
  color: #fff;
  font-size: 0.875rem;
  background: #0e293c;
  text-align: center;
  padding: 30px 0;
  margin-top: 101px;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    margin-top: 45px;
  }
}
footer .copyright a {
  color: inherit;
}

body.index {
  position: relative;
}
body.index::before {
  content: "";
  width: 100%;
  height: 1483px;
  background: linear-gradient(to right, #041B2B 0%, #041B2B 50%, #fff 50%, #fff 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .index h2 {
    font-size: 2.5rem;
    letter-spacing: 0.08em;
  }
}

.mv {
  position: relative;
  z-index: 0;
  overflow-x: clip;
}
@media screen and (min-width: 1101px) {
  .mv {
    min-height: 1483px;
  }
}
@media screen and (min-width: 768px) {
  .mv {
    padding: 167px 0 0 105px;
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .mv {
    padding-left: 4vw;
    padding-bottom: 240px;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 10px 0 140px;
    margin: 0;
  }
}
.mv::before {
  content: "";
  display: block;
  position: absolute;
  background: url(img/img-rotate01.svg) no-repeat 0 0;
  animation: rotate-anime 400s linear infinite;
  z-index: 0;
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .mv::before {
    width: 914px;
    height: 931px;
    bottom: -389px;
    left: -83px;
  }
}
@media screen and (max-width: 767px) {
  .mv::before {
    width: 100%;
    height: 412px;
    bottom: -130px;
    left: -90px;
    background-size: contain;
  }
}
.mv::after {
  content: "";
  width: calc(50% + 1px);
  height: 50%;
  display: block;
  position: absolute;
  right: 0;
  background: #0e293c;
  z-index: -2;
  bottom: 100px;
}
@media screen and (min-width: 768px) {
  .mv::after {
    bottom: 200px;
  }
}
.mv .catch-wrap {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .mv .catch-wrap {
    padding-bottom: 44px;
    margin-bottom: 60px;
    max-height: 760px;
  }
}
.mv .catch-wrap::after {
  content: "";
  width: 90%;
  z-index: -1;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .mv .catch-wrap::after {
    content: "";
    background-image: url(./img/img-mv.jpg);
    background-repeat: no-repeat;
    background-position: 70% 0;
    background-size: auto 100%;
    position: absolute;
    width: 89%;
    height: 100%;
    overflow-y: hidden;
    top: 0px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv .catch-wrap::after {
    background: url(img/img-sp-mv.jpg) no-repeat 0 0;
    background-size: cover;
    width: 87%;
    height: 100%;
    display: block;
    top: 27px;
    position: absolute;
    right: 0;
  }
}
@media screen and (min-width: 1101px) {
  .mv .catch-wrap::before {
    content: "";
    background: linear-gradient(90deg, rgb(230, 231, 236) 50%, rgb(215, 218, 225) 50%);
    position: absolute;
    width: 89%;
    height: 100%;
    display: block;
    z-index: -1;
    margin: 0;
    overflow-y: hidden;
    top: 0px;
    right: 0;
  }
}
.mv .catch-wrap .txt-mv {
  position: relative;
  z-index: 0;
  display: block;
  width: 40vw;
}
@media screen and (min-width: 768px) {
  .mv .catch-wrap .txt-mv {
    margin-top: 19px;
  }
}
.mv .catch-wrap .txt-mv img {
  max-width: 842px;
  width: 45vw;
}
@media screen and (max-width: 767px) {
  .mv .catch-wrap .txt-mv img {
    padding: 55px 0 0 18px;
    width: clamp(209px, 48vw, 60vw);
  }
}
.mv .catch-wrap .mv-catch {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 3.625rem;
  letter-spacing: 0.1em;
  text-shadow: 0 0 12px rgba(51, 51, 51, 0.39);
  margin: 77px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .mv .catch-wrap .mv-catch {
    font-size: 2.5rem;
    margin: 49px 0 12vw 10px;
    letter-spacing: 0.02em;
  }
}
.mv .mv-heading {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6875rem;
  color: #fff;
  margin: 0 0 17px 10px;
}
@media screen and (max-width: 767px) {
  .mv .mv-heading {
    font-size: 1.5rem;
  }
}
.mv .mv-heading br {
  display: none;
}
@media screen and (max-width: 1474px) {
  .mv .mv-heading br {
    display: block;
  }
}
.mv p {
  color: #fff;
  line-height: 2.125;
  margin: 0 10px;
}
@media screen and (min-width: 1101px) {
  .mv p {
    width: calc(50% - 100px);
    margin: 0 0 0 10px;
  }
}

.ideal-skin {
  overflow-x: clip;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .ideal-skin {
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  .ideal-skin {
    padding: 244px 0;
    margin-top: 47px;
  }
}
@media screen and (max-width: 767px) {
  .ideal-skin {
    padding: 201px 0 0;
    margin-top: -60px;
  }
}
@media screen and (max-width: 767px) {
  .ideal-skin::before {
    content: "";
    background-color: #fff;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 0;
    height: calc(100% - 30px);
    width: 100%;
    display: block;
  }
}
.ideal-skin .ideal-txt {
  position: absolute;
  display: block;
  left: 16px;
  width: 92%;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .ideal-skin .ideal-txt {
    left: 51.5vw;
    top: -195px;
    width: 44vw;
  }
}
@media screen and (min-width: 768px) {
  .ideal-skin .circle-wrap {
    z-index: -1;
    height: 660px;
    position: absolute;
    top: -290px;
    left: -662px;
    width: 890px;
    margin-top: 0px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
}
.ideal-skin .circle-wrap.active {
  opacity: 1;
  transform: translateY(0);
}
.ideal-skin .circle-wrap.active .bg-circle {
  animation: circle-pc ease 9s;
  animation-fill-mode: forwards;
}
.ideal-skin .bg-circle {
  position: absolute;
  z-index: -1;
  width: 857px;
  display: block;
  fill: none;
  stroke: #E1DDDA;
  stroke-width: 1px;
  stroke-dasharray: 2690;
  stroke-dashoffset: 2690; /* 初期状態では非表示 */
  bottom: 0;
  transform: rotate(-55deg);
}
@media screen and (max-width: 767px) {
  .ideal-skin .bg-circle {
    width: 251px;
    top: -100px;
    left: -162px;
    transform: rotate(-90deg);
  }
}
@keyframes circle-pc {
  from {
    stroke-dashoffset: 2690;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes circle-sp {
  from {
    stroke-dashoffset: 788;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.ideal-skin .inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .ideal-skin h2 {
    margin-bottom: 49px;
    display: inline-block;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .ideal-skin h2 {
    font-size: 1.5625rem;
    line-height: 1.44;
    margin-bottom: 32px;
  }
}
.ideal-skin h2::before {
  content: "";
  background: rgb(246, 247, 248);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 50%, rgb(191, 157, 132) 50%);
  height: 1px;
  position: absolute;
  left: 0;
  top: 29px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .ideal-skin h2::before {
    margin: 0 calc(100% - 47.5vw);
    width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .ideal-skin h2::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 54%, rgb(191, 157, 132) 46%);
    width: 90%;
    left: 10px;
  }
}
.ideal-skin .flexbox03 {
  margin: 63px 0;
}
@media screen and (min-width: 768px) {
  .ideal-skin .flexbox03 {
    gap: 0 18px;
    margin: 68px 0;
    max-width: 1110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .ideal-skin .flexbox03 .box {
    width: 31%;
  }
}
@media screen and (min-width: 1101px) {
  .ideal-skin .flexbox03 .box {
    width: 32%;
  }
  .ideal-skin .flexbox03 .box:nth-of-type(3) h3 {
    padding: 27px 0 41px;
  }
}
@media screen and (max-width: 767px) {
  .ideal-skin .flexbox03 .box {
    margin: 0 0 60px;
  }
}
.ideal-skin .flexbox03 .box h3 {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 48px 0 27px;
  padding-bottom: 34px;
}
@media screen and (min-width: 768px) {
  .ideal-skin .flexbox03 .box h3 {
    font-size: 1.5625rem;
    letter-spacing: 0.03em;
    line-height: 1.44;
    padding-bottom: 33px;
    margin: 0 0 28px;
  }
}
.ideal-skin .flexbox03 .box h3::before {
  content: "";
  width: 30px;
  height: 3px;
  background: #C09E5E;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .ideal-skin .flexbox03 .box h3::before {
    width: 20px;
    background: #BF9D84;
  }
}
.ideal-skin .flexbox03 .box picture {
  position: relative;
  z-index: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .ideal-skin .flexbox03 .box picture {
    margin-bottom: 45px;
  }
}
.ideal-skin .flexbox03 .box picture::after {
  content: "";
  background: #000;
  display: block;
  z-index: -1;
  position: absolute;
  width: calc(100% - 13px);
  height: 294px;
  top: 11px;
  left: 13px;
}
@media screen and (min-width: 768px) {
  .ideal-skin .flexbox03 .box picture::after {
    width: calc(100% - 14px);
    height: calc(100% - 17px);
    top: 27px;
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ideal-skin .flexbox03 .box picture img {
    height: 290px;
    object-fit: cover;
    width: calc(100% - 13px);
  }
}
.ideal-skin .flexbox03 .box p {
  padding: 0 10px 0 0;
  line-height: 1.875;
}

.your-beauty {
  overflow-x: clip;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .your-beauty {
    margin: 100px 0 490px;
    border-right: 23px solid #BF9D84;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty {
    margin: 100px 0 180px;
  }
}
.your-beauty::before {
  content: "";
  display: block;
  position: absolute;
  background: url(img/img-rotate02.svg) no-repeat 0 0;
  animation: rotate-anime 400s linear infinite;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .your-beauty::before {
    width: 954px;
    height: 971px;
    top: -369px;
    left: -133px;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty::before {
    width: 306px;
    height: 311px;
    top: -110px;
    left: -90px;
    background-size: contain;
  }
}
.your-beauty::after {
  content: "";
  display: block;
  position: absolute;
  background: url(img/img-rotate02.svg) no-repeat 0 0;
  animation: rotate-anime 400s linear infinite;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .your-beauty::after {
    width: 954px;
    height: 971px;
    bottom: -459px;
    right: -1173px;
    left: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty::after {
    width: 364px;
    height: 371px;
    bottom: -149px;
    right: -130px;
    background-size: contain;
    z-index: -2;
  }
}
.your-beauty .your-beauty-inner {
  background: #0e293c;
}
.your-beauty .loop-wrap {
  background: #0e293c;
}
.your-beauty .linklist {
  position: relative;
}
@media screen and (min-width: 1101px) {
  .your-beauty .linklist {
    padding: 0 0 0 50%;
    background: url(img/bg-link.jpg) 0 0;
    background-size: auto 74%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .your-beauty .linklist {
    padding: 0 0 0 45%;
    margin-top: -30px;
    z-index: 1;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty .linklist {
    padding: 0 0 0 25%;
    margin-top: -30px;
    z-index: 1;
    background: none;
  }
}
.your-beauty .linklist::before {
  content: "";
  position: absolute;
  background: url(img/img-beauty01.jpg) no-repeat center/cover;
  display: block;
  transition: all ease-in 0.3s;
}
@media screen and (min-width: 768px) {
  .your-beauty .linklist::before {
    height: calc(100% + 1px);
    width: 50%;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty .linklist::before {
    display: none;
  }
}
.your-beauty .linklist.s01::before {
  transition: all ease-in 0.3s;
  background-image: url(img/img-beauty01.jpg);
}
.your-beauty .linklist.s02::before {
  transition: all ease-in 0.3s;
  background-image: url(img/img-beauty02.jpg);
}
.your-beauty .linklist.s03::before {
  transition: all ease-in 0.3s;
  background-image: url(img/img-beauty03.jpg);
}
.your-beauty .linklist.s04::before {
  transition: all ease-in 0.3s;
  background-image: url(img/img-beauty04.jpg);
}
.your-beauty .linklist::after {
  content: "";
  width: 75%;
  height: calc(100% + 16px);
  bottom: -96px;
  display: block;
  position: absolute;
  left: 0;
  background: #0e293c;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .your-beauty .linklist::after {
    width: calc(50% + 294px);
    height: 207px;
    bottom: -207px;
    z-index: 0;
  }
}
.your-beauty .linklist li:last-child a {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .your-beauty .linklist li {
    border-right: 7px solid #BF9D84;
  }
}
.your-beauty .linklist li a {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  align-items: center;
  background: #041B2B;
  padding: 30px 30px 30px 60px;
  position: relative;
  color: #fff;
  font-size: 1.875rem;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .your-beauty .linklist li a {
    padding: 50px 30px 50px 60px;
    min-height: 191px;
    transition: all ease-in 0.3s;
  }
  .your-beauty .linklist li a:hover {
    background-color: transparent;
    opacity: 1;
  }
  .your-beauty .linklist li a span {
    top: 0;
    left: 380px;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty .linklist li a {
    font-size: 1.125rem;
    background: url(img/bg-link.jpg);
    background-size: 134%;
    height: 115px;
  }
}
.your-beauty .linklist li a::before {
  content: "";
  height: 3px;
  width: 34px;
  background: #C09E5E;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .your-beauty .sp-your-beauty {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .your-beauty .sp-your-beauty {
    margin: 0;
    width: 284px;
    height: 181px;
  }
  .your-beauty .sp-your-beauty .swiper-slide img {
    width: 100%;
    height: auto;
  }
}

.news-section {
  margin: 127px 0;
}
@media screen and (min-width: 768px) {
  .news-section {
    margin: 180px 0 210px;
  }
}
@media screen and (max-width: 767px) {
  .news-section .inner {
    padding: 0 10px;
  }
}
.news-section h2 {
  position: relative;
  z-index: 0;
  padding: 0 0 30px;
}
@media screen and (max-width: 767px) {
  .news-section h2 {
    font-size: 1.5625rem;
  }
}
.news-section h2::before {
  content: url(img/txt-news.svg);
  top: -34px;
  left: -160px;
  position: absolute;
  height: 126px;
  width: 468px;
  z-index: -1;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .news-section h2::before {
    height: 52px;
    width: 195px;
    top: -7px;
    left: 6px;
  }
}
.news-section h2::after {
  content: "";
  height: 3px;
  width: 30px;
  background: #c09e5e;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .news-section h2 a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .news-section h2 a .flowing-arrow {
    margin-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .news-section h2 a .flowing-arrow {
    width: 17vw;
    height: 23px;
    left: 250px;
    bottom: unset;
  }
}
.news-section h2 a .flowing-arrow::before, .news-section h2 a .flowing-arrow::after {
  content: url(img/icon-arrow04.svg);
  width: 115px;
}
@media screen and (min-width: 768px) {
  .news-section .news-item {
    margin: 211px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-section .news-item {
    margin: 10px 0;
  }
}
.news-section .news-item li {
  border-bottom: 1px solid #000;
}
.news-section .news-item li a {
  display: block;
}
@media screen and (min-width: 768px) {
  .news-section .news-item li a {
    padding: 40px 0 40px 10px;
  }
}
@media screen and (max-width: 767px) {
  .news-section .news-item li a {
    display: flex;
    flex-wrap: wrap;
    padding: 32px 0;
  }
}
@media screen and (max-width: 767px) {
  .news-section .news-item li a .date {
    margin-right: 0;
  }
}
.news-section .news-item li a .news-text {
  margin-left: 70px;
  display: inline;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .news-section .news-item li a .news-text {
    width: 100%;
    margin: 10px 0 0;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .news-section .news-item li a.rotate-txt span {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .news-section .news-item li a.rotate-txt .outer span {
    transform: none;
  }
}

.search-area {
  background: #0e293c;
  overflow-x: clip;
  position: relative;
}
@media screen and (min-width: 768px) {
  .search-area {
    padding: 300px 0 130px;
  }
}
@media screen and (max-width: 767px) {
  .search-area {
    padding: 120px 0;
  }
}
.search-area::before {
  content: "";
  display: block;
  position: absolute;
  background: url(img/img-rotate01.svg) no-repeat 0 0;
  animation: rotate-anime 400s linear infinite;
  z-index: 0;
  right: 0;
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .search-area::before {
    width: 914px;
    height: 931px;
    top: -100px;
    left: -83px;
  }
}
@media screen and (max-width: 767px) {
  .search-area::before {
    width: 254px;
    height: 241px;
    top: -30px;
    left: -50px;
    background-size: contain;
  }
}
.search-area h2, .search-area .title {
  color: #fff;
  text-align: right;
  padding: 0 0 28px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
@media screen and (min-width: 768px) {
  .search-area h2, .search-area .title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .search-area h2, .search-area .title {
    padding: 0 0 48px;
    font-size: 25px;
  }
}
.search-area h2::before, .search-area .title::before {
  content: "";
  background: url(img/txt-search.svg) no-repeat 0 0;
  top: -104px;
  right: -296px;
  position: absolute;
  height: 126px;
  width: 640px;
}
@media screen and (max-width: 767px) {
  .search-area h2::before, .search-area .title::before {
    height: 53px;
    width: 270px;
    top: -7px;
    right: 0;
    background-size: cover;
  }
}
.search-area h2::after, .search-area .title::after {
  content: "";
  height: 3px;
  width: 30px;
  background: #c09e5e;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}
.search-area .search-condition {
  margin: 73px 0;
  background: #fff;
  outline: solid 1px #c09e5e;
  outline-offset: -11px;
  padding: 50px 40px 50px 57px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition {
    padding: 47px 37px;
    margin: 48px 0 0;
  }
}
.search-area .search-condition .search-item {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item {
    margin: 0px 0 15px 1px;
    font-size: 0.875rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .search-area .search-condition .search-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
    align-items: center;
  }
}
.search-area .search-condition .search-item p {
  font-size: 1rem;
  padding: 2px 0 18px 50px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .search-area .search-condition .search-item p {
    width: 27%;
  }
}
@media screen and (min-width: 1101px) {
  .search-area .search-condition .search-item p {
    padding: 0 0 0 60px;
    width: 20%;
  }
}
.search-area .search-condition .search-item input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search-area .search-condition .search-item input[type=radio]:checked + label::after {
  position: absolute;
  top: 8px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  background: #0e293c;
  content: "";
}
@media screen and (min-width: 768px) {
  .search-area .search-condition .search-item input[type=radio]:checked + label::after {
    top: 10px;
  }
}
.search-area .search-condition .search-item input[type=text],
.search-area .search-condition .search-item #prefectures {
  border: 1px solid #D9D9D9;
  background: #fff;
  padding: 5px;
  transition: all ease-in 0.3s;
}
.search-area .search-condition .search-item input[type=text]:focus,
.search-area .search-condition .search-item #prefectures:focus {
  outline: none;
  box-shadow: 0 0 9px 5px #e3e3e3;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item input[type=text],
  .search-area .search-condition .search-item #prefectures {
    width: 100%;
  }
}
.search-area .search-condition .search-item #prefectures {
  border: 1px solid #0e293c;
  border-radius: 3px;
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item #prefectures {
    width: 100px;
  }
}
.search-area .search-condition .search-item label {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
}
.search-area .search-condition .search-item label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid #D9D9D9;
  background-color: #D9D9D9;
  position: absolute;
  left: 0;
  top: 6px;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item label::before {
    top: 4px;
  }
}
.search-area .search-condition .search-item label:focus::before {
  box-shadow: 0 0 9px 5px #e3e3e3;
}
.search-area .search-condition .search-item.type-treatment {
  background: url(img/gld-treatment.svg) no-repeat left center;
  background-size: 40px 40px;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item.type-treatment {
    background-position: 0 16px;
  }
}
.search-area .search-condition .search-item.type-treatment .search-list {
  padding-left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .search-area .search-condition .search-item.type-treatment .search-list {
    width: 60%;
  }
}
@media screen and (min-width: 768px) {
  .search-area .search-condition .search-item.type-treatment .search-list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item.type-treatment .search-list {
    display: block;
  }
}
.search-area .search-condition .search-item.type-treatment .search-list li {
  margin: 0 0 12px 0;
}
@media screen and (min-width: 768px) {
  .search-area .search-condition .search-item.type-treatment .search-list li {
    margin: 0 20px 0 0;
  }
  .search-area .search-condition .search-item.type-treatment .search-list li:hover {
    opacity: 0.7;
    transition: all ease-in 0.3s;
  }
}
.search-area .search-condition .search-item.type-clinic {
  background: url(img/gld-clinic.svg) no-repeat left center;
  background-size: 40px 40px;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item.type-clinic {
    background-position: 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .search-area .search-condition .search-item.type-clinic #clinic_name {
    width: 60%;
  }
}
.search-area .search-condition .search-item.type-ad {
  background: url(img/gld-ad.svg) no-repeat left center;
  background-size: 40px 40px;
}
@media screen and (max-width: 767px) {
  .search-area .search-condition .search-item.type-ad {
    background-position: 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 0 30px;
  }
  .search-area .search-condition .search-item.type-ad p {
    width: 60%;
    padding: 0 0 0 50px;
  }
  .search-area .search-condition .search-item.type-ad #prefectures {
    width: 40%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .search-area .search-condition .search-item.type-ad #prefectures {
    width: 100%;
    margin-top: 28px;
  }
}
.search-area .search-condition .search-btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 26px;
}
@media screen and (min-width: 768px) {
  .search-area .search-condition .search-btn-box {
    margin-top: 2rem;
  }
}
.search-area .search-condition .result-btn {
  display: block;
  color: #fff;
  width: 100%;
  max-width: 15.75rem;
  background: #0e293c;
  border: 1px solid #BF9D84;
  text-align: center;
  padding: 27px 91px 25px 92px;
  font-size: 16px;
  position: relative;
  transition: all ease-in 0.3s;
}
.search-area .search-condition .result-btn::before {
  content: "";
  background: url(img/icon-search.svg) no-repeat 0 0;
  width: 17px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 62px;
  display: block;
  margin: auto;
}
.search-area .search-condition .result-btn:hover {
  background-color: #BF9D84;
}
.search-area .search-condition .reset-btn {
  display: block;
  color: #0e293c;
  width: 100%;
  max-width: 15.75rem;
  background: #fff;
  border: 1px solid #0e293c;
  text-align: center;
  padding: 27px 10px 25px 10px;
  font-size: 16px;
  position: relative;
  transition: all ease-in 0.3s;
}
.search-area .search-condition .reset-btn:hover {
  border-color: #BF9D84;
  background-color: #BF9D84;
  color: #fff;
}

.result-area {
  background: url(img/bg-search.jpg) repeat;
  padding: 130px 10px;
}
@media screen and (min-width: 768px) {
  .result-area {
    padding: 345px 0 218px;
    margin-top: -140px;
  }
}
.result-area .inner {
  background: #fff;
  border-top: 5px solid #0e293c;
  padding: 23px 20px;
}
@media screen and (min-width: 768px) {
  .result-area .inner {
    border-top-width: 14px;
    padding: 61px 63px;
  }
}
.result-area .inner .search-result {
  background: #F9F9F9;
  padding: 10px 40px 14px;
  font-size: 1rem;
  color: #B71726;
}
@media screen and (min-width: 768px) {
  .result-area .inner .search-result {
    font-size: 1.25rem;
  }
}
.result-area .inner .search-result b {
  font-size: 1.25rem;
  padding-left: 18px;
}
@media screen and (min-width: 768px) {
  .result-area .inner .search-result b {
    font-size: 2.625rem;
    padding-left: 18px;
  }
}
.result-area .inner .clinic-list {
  border-top: 1px solid #000;
  padding-top: 48px;
}
@media screen and (min-width: 768px) {
  .result-area .inner .clinic-list {
    padding: 20px 0 80px;
  }
}
.result-area .inner .clinic-list:nth-of-type(1) {
  border: none;
}
.result-area .inner .clinic-list h3, .result-area .inner .clinic-list .clinic-name {
  font-size: 1.25rem;
  font-family: "Noto sans JP", "Hiragino Kaku Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, sans-serifsans-serif;
  border-left: 6px solid #BF9D84;
  padding: 6px 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .result-area .inner .clinic-list h3, .result-area .inner .clinic-list .clinic-name {
    padding: 8px 16px 9px;
  }
}
.result-area .inner .clinic-list .clinic-wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .result-area .inner .clinic-list .clinic-wrap {
    gap: 0 37px;
    margin: 28px 0 0;
  }
}
@media screen and (min-width: 1101px) {
  .result-area .inner .clinic-list .clinic-wrap .map {
    width: 40%;
  }
  .result-area .inner .clinic-list .clinic-wrap .map iframe {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .result-area .inner .clinic-list .clinic-wrap .map {
    margin: 24px 0;
    width: 100%;
  }
  .result-area .inner .clinic-list .clinic-wrap .map iframe {
    width: 100%;
    height: 210px;
  }
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info {
  width: 100%;
}
@media screen and (min-width: 1101px) {
  .result-area .inner .clinic-list .clinic-wrap .clinic-info {
    width: 55%;
  }
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info li {
  padding: 0 0 13px 30px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: 0 2px;
}
@media screen and (min-width: 768px) {
  .result-area .inner .clinic-list .clinic-wrap .clinic-info li {
    padding: 2px 0 15px 50px;
    background-size: 30px auto;
  }
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info li.info-ad {
  background-image: url(img/nv-ad.svg);
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info li.info-tel {
  background-image: url(img/nv-tel.svg);
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info li.info-doc {
  background-image: url(img/nv-doc.svg);
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info li.info-treatment {
  background-image: url(img/nv-treatment.svg);
}
.result-area .inner .clinic-list .clinic-wrap .clinic-info li.info-treatment span {
  font-size: 0.75rem;
  border: 1px solid #0e293c;
  border-radius: 3px;
  padding: 2px 6px 3px;
  margin: 4px 9px 0 0;
  display: inline-block;
}
.result-area .inner .clinic-list .clinic-wrap .btn {
  transition: all ease-in 0.3s;
  display: block;
  color: #fff;
  background: #BF9D84;
  text-align: center;
  padding: 27px 91px 25px 92px;
  font-size: 14px;
  position: relative;
  margin: 67px 0 0 7px;
}
@media screen and (min-width: 768px) {
  .result-area .inner .clinic-list .clinic-wrap .btn {
    width: 291px;
  }
}
@media screen and (max-width: 767px) {
  .result-area .inner .clinic-list .clinic-wrap .btn {
    margin: 48px 0;
  }
}
.result-area .inner .clinic-list .clinic-wrap .btn::before {
  content: "";
  background: url(img/web.svg) no-repeat 0 0;
  width: 17px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 62px;
  display: block;
  margin: auto;
}
.result-area .inner .clinic-list .clinic-wrap .btn:hover {
  background-color: #0e293c;
  opacity: 1;
}

.related-link {
  position: relative;
  z-index: 0;
  margin: 147px 0 172px;
}
@media screen and (min-width: 768px) {
  .related-link {
    margin: 24vw 0;
  }
}
.related-link::before, .related-link::after {
  content: "";
  display: block;
  position: absolute;
  background: url(img/img-rotate02.svg) no-repeat 0 0;
  animation: rotate-anime 400s linear infinite;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .related-link::before, .related-link::after {
    max-width: 859px;
    max-height: 874px;
    width: 90%;
    height: 90%;
    top: -249px;
    left: -73px;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .related-link::before, .related-link::after {
    width: 50%;
    height: 50%;
    top: -17vw;
    left: -10vw;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .related-link::before, .related-link::after {
    width: 306px;
    height: 311px;
    top: -110px;
    left: -90px;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) {
  .related-link::after {
    width: 90%;
    height: 90%;
    bottom: -300px;
    right: -1463px;
    left: 0;
    margin: auto;
    top: unset;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .related-link::after {
    width: 50%;
    height: 50%;
    bottom: -33vw;
    right: -90vw;
    background-size: contain;
  }
}
@media screen and (max-width: 767px) {
  .related-link::after {
    width: 278px;
    height: 283px;
    bottom: -129px;
    left: unset;
    background-size: contain;
    z-index: -2;
    top: unset;
    right: -70px;
  }
}
.related-link .related-wrap {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 1101px) {
  .related-link .related-wrap {
    padding: 100px 0 117px;
  }
}
.related-link .related-wrap::before {
  content: "";
  background: #041B2B;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 3vw);
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .related-link .related-wrap::before {
    width: 98%;
  }
}
@media screen and (max-width: 767px) {
  .related-link .related-wrap::before {
    width: calc(100% - 10px);
  }
}
.related-link .related-wrap::after {
  content: "";
  background: #0e293c;
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 12vw);
  height: calc(100% - 173px);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .related-link .related-wrap::after {
    width: calc(100% - 24px);
    height: calc(100% - 79px);
  }
}
.related-link .related-wrap .loop-wrap {
  margin-left: 3vw;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .related-link .related-wrap .loop-wrap {
    margin-left: 2%;
    padding-top: 5%;
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 767px) {
  .related-link .related-wrap .loop-wrap {
    margin: 0 0 0 10px;
    padding: 44px 0 28px;
  }
}
.related-link .related-wrap .loop-wrap li img {
  width: 1164px;
  height: 88px;
}
@media screen and (max-width: 767px) {
  .related-link .related-wrap .loop-wrap li img {
    width: 649px;
    height: 53px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .related-link .inner {
    margin: 0 20px;
  }
}
@media screen and (min-width: 1101px) {
  .related-link .inner ul {
    margin: 100px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .related-link .inner ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 38px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .related-link .inner ul {
    padding: 0 10px 32px;
  }
}
.related-link .inner ul li {
  position: relative;
  transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
}
@media screen and (min-width: 1101px) {
  .related-link .inner ul li {
    pointer-events: none;
    width: calc(33% - 22px);
    padding: 189px 0 0 23px;
  }
  .related-link .inner ul li:hover .img-wrap {
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
  }
  .related-link .inner ul li:hover img {
    transform: scale(1.1);
    transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .related-link .inner ul li {
    width: calc(50% - 22px);
    padding: 189px 0 0 23px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .related-link .inner ul li {
    padding: 208px 0 0 23px;
    margin-bottom: 32px;
  }
}
.related-link .inner ul li .img-wrap {
  width: 309px;
  height: 223px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .related-link .inner ul li .img-wrap {
    width: 83vw;
    left: 4px;
  }
}
.related-link .inner ul li .img-wrap img {
  object-fit: cover;
  transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .related-link .inner ul li .img-wrap img {
    width: 100%;
  }
}
.related-link .inner ul li a {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  background: #041B2B;
  border-right: 15px solid #BF9D84;
  padding-left: 60px;
  font-size: 1.25rem;
  z-index: 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .related-link .inner ul li a {
    pointer-events: auto;
    height: 172px;
    transition: all ease-in 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .related-link .inner ul li a {
    height: 110px;
    padding-left: 50px;
    border-top: 1px solid #BF9D84;
    border-bottom: 1px solid #BF9D84;
    border-left: 1px solid #BF9D84;
  }
}
.related-link .inner ul li a::before {
  content: "";
  height: 3px;
  width: 34px;
  background: #c09e5e;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
}
.related-link .inner ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/bg-link.jpg);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
.related-link .inner ul li a:hover::after {
  opacity: 1;
}
.related-link .inner ul li a .flowing-arrow {
  top: 0;
  bottom: 0;
  right: 7px;
  width: 43px;
  height: 26px;
  left: unset;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .related-link .inner ul.two-columns {
    gap: 65px 90px;
    justify-content: start;
  }
  .related-link .inner ul.two-columns li {
    width: calc(50% - 46px);
  }
  .related-link .inner ul.two-columns li .img-wrap {
    width: 493px;
    height: 223px;
    transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
  }
  .related-link .inner ul.two-columns li:hover .img-wrap {
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
  }
  .related-link .inner ul.two-columns li:hover img {
    transform: scale(1.1);
    transition: 0.4s cubic-bezier(0.18, -0.01, 0.3, 1);
  }
}
@media screen and (max-width: 767px) {
  .related-link .inner ul.two-columns img {
    height: 100%;
  }
}

.headerng-area {
  background: #0e293c;
  padding: 176px 0 19px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .headerng-area {
    max-height: 497px;
    padding: 24vw 0 54px;
    overflow: visible;
  }
}
@media screen and (min-width: 1101px) {
  .headerng-area {
    height: 497px;
    padding: 392px 0 54px;
    overflow: visible;
  }
}
.headerng-area::before {
  content: "";
  display: block;
  position: absolute;
  background: url(img/img-rotate01.svg) no-repeat 0 0;
  animation: rotate-anime 400s linear infinite;
  z-index: 0;
  opacity: 0.3;
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 768px) {
  .headerng-area::before {
    width: 623px;
    height: 580px;
    bottom: -99px;
    left: -83px;
  }
}
@media screen and (max-width: 767px) {
  .headerng-area::before {
    width: 100%;
    height: 412px;
    bottom: -130px;
    left: -90px;
    background-size: contain;
  }
}
.headerng-area::after {
  content: "";
  width: 90vw;
  height: 58px;
  background: #BF9D84;
  position: absolute;
  bottom: -58px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .headerng-area::after {
    width: 81vw;
    height: 30px;
    bottom: -30px;
  }
}
.headerng-area h1, .headerng-area .page-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.1875rem;
  color: #fff;
  position: relative;
  padding-left: 53px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1, .headerng-area .page-title {
    font-size: 1.8125rem;
    padding-left: 40px;
  }
}
.headerng-area h1::before, .headerng-area .page-title::before {
  content: "";
  width: 29px;
  height: 1px;
  background: #BF9D84;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .headerng-area h1::before, .headerng-area .page-title::before {
    width: 18px;
    left: 15px;
    top: 4px;
  }
}
.headerng-area h1::after, .headerng-area .page-title::after {
  content: "";
  bottom: 93px;
  left: 14px;
  position: absolute;
  width: 90%;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .headerng-area h1::after, .headerng-area .page-title::after {
    width: 90%;
    bottom: 44px;
    left: 0px;
  }
}
.headerng-area h1.h1-skin-troubles::after, .headerng-area .page-title.h1-skin-troubles::after {
  content: url(img/txt-h1-problems.svg);
  height: 105px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-skin-troubles::after, .headerng-area .page-title.h1-skin-troubles::after {
    content: url(img/txt-h1-problems-sp.svg);
    height: 119px;
    bottom: 87px;
  }
}
.headerng-area h1.h1-about::after, .headerng-area .page-title.h1-about::after {
  content: url(img/about/txt-h1-about.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-about::after, .headerng-area .page-title.h1-about::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/about/txt-h1-about.svg) no-repeat 0 0;
    bottom: 87px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-flow::after, .headerng-area .page-title.h1-flow::after {
  content: url(img/flow/txt-h1-flow.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-flow::after, .headerng-area .page-title.h1-flow::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/flow/txt-h1-flow.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-effect::after, .headerng-area .page-title.h1-effect::after {
  content: url(img/effect/txt-h1-effect.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-effect::after, .headerng-area .page-title.h1-effect::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/effect/txt-h1-effect.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-search-clinic::after, .headerng-area .page-title.h1-search-clinic::after {
  content: url(img/search-clinic/txt-h1-search.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-search-clinic::after, .headerng-area .page-title.h1-search-clinic::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/search-clinic/txt-h1-search.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-clinic-detail::after, .headerng-area .page-title.h1-clinic-detail::after {
  content: url(img/search-clinic/txt-h1-search-info.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-clinic-detail::after, .headerng-area .page-title.h1-clinic-detail::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/search-clinic/txt-h1-search-info.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-news::after, .headerng-area .page-title.h1-news::after {
  content: url(img/news/txt-h1-news.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-news::after, .headerng-area .page-title.h1-news::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/news/txt-h1-news.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-news-detail::after, .headerng-area .page-title.h1-news-detail::after {
  content: url(img/news/txt-h1-details.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-news-detail::after, .headerng-area .page-title.h1-news-detail::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/news/txt-h1-details.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-faq::after, .headerng-area .page-title.h1-faq::after {
  content: url(img/faq/txt-h1-faq.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-faq::after, .headerng-area .page-title.h1-faq::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/faq/txt-h1-faq.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-company::after, .headerng-area .page-title.h1-company::after {
  content: url(img/txt-h1-company.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-company::after, .headerng-area .page-title.h1-company::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/txt-h1-company.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-privacy::after, .headerng-area .page-title.h1-privacy::after {
  content: url(img/txt-h1-privacy.svg);
  height: 105px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-privacy::after, .headerng-area .page-title.h1-privacy::after {
    content: url(img/txt-h1-privacy-sp.svg);
    height: 119px;
    bottom: 57px;
  }
}
.headerng-area h1.h1-sitemap::after, .headerng-area .page-title.h1-sitemap::after {
  content: url(img/txt-h1-sitemap.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-sitemap::after, .headerng-area .page-title.h1-sitemap::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/txt-h1-sitemap.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}
.headerng-area h1.h1-404::after, .headerng-area .page-title.h1-404::after {
  content: url(img/txt-h1-404.svg);
  height: 105px;
}
@media screen and (max-width: 767px) {
  .headerng-area h1.h1-404::after, .headerng-area .page-title.h1-404::after {
    content: "";
    height: 49px;
    width: 90%;
    background: url(img/txt-h1-404.svg) no-repeat 0 0;
    bottom: 60px;
    left: 14px;
    z-index: 1;
    display: block;
    background-size: contain;
  }
}

.contents {
  margin-top: 147px;
}
@media screen and (min-width: 768px) {
  .contents {
    margin-top: 226px;
  }
}

#toc {
  position: fixed;
  top: 310px;
  right: 0;
  counter-reset: item;
  background: url(img/txt-index.svg) no-repeat 22px 14px #D4CFCB;
  padding: 69px 20px 56px 0;
  width: 240px;
  z-index: 5;
  box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  #toc {
    display: none;
  }
}
#toc li {
  position: relative;
}
#toc li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute;
  left: 42px;
  top: 10px;
}
#toc li::after {
  content: "";
  width: 32px;
  height: 1px;
  background: #041B2B;
  position: absolute;
  top: 23px;
}
#toc li a {
  display: block;
  padding: 10px 0 10px 80px;
  line-height: 1.5;
}

.heading-wrap {
  position: relative;
}
.heading-wrap h2 {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 0.04em;
  line-height: 1.429;
}
@media screen and (min-width: 768px) {
  .heading-wrap h2 {
    padding: 91px 0 99px;
    margin: 0 0 64px;
  }
}
@media screen and (max-width: 767px) {
  .heading-wrap h2 {
    padding: 64px 0 49px 10px;
    margin: 0 0 32px;
  }
}
.heading-wrap img {
  position: absolute;
  top: -10px;
}
@media screen and (max-width: 767px) {
  .heading-wrap img {
    height: 36px;
    top: -17px;
  }
}
.heading-wrap::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: url(img/heading-h2.png) no-repeat top right 500px #F9F9F9;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 35vw;
}
@media screen and (max-width: 767px) {
  .heading-wrap::before {
    background-position: top -30px right 230px;
    right: 0;
    background-size: auto 160px;
  }
}

.page-skin-troubles .two-columns {
  display: flex;
  flex-wrap: wrap;
  margin: 80px 0 50px 11px;
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .two-columns {
    gap: 65px 78px;
    justify-content: start;
    margin: 184px -7px 168px 18px;
  }
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .two-columns .box {
    width: calc(50% - 41px);
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .two-columns .box {
    margin: 0 0 64px;
  }
}
.page-skin-troubles .two-columns .box img {
  box-shadow: -17px 17px 0px 0 #0e293c;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .two-columns .box img {
    box-shadow: -11px 11px 0px 0 #0e293c;
  }
}
.page-skin-troubles .two-columns .box dt {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5625rem;
  font-weight: bold;
  color: #BF9D84;
  text-align: center;
  margin: 45px 0 16px -19px;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .two-columns .box dt {
    font-size: 1.25rem;
  }
}
.page-skin-troubles .two-columns .box dd {
  text-align: center;
  line-height: 1.5;
}
.page-skin-troubles .ordered-list01 {
  margin: 92px 0 222px 0;
}
@media screen and (min-width: 1101px) {
  .page-skin-troubles .ordered-list01 {
    margin: 92px -30px 222px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 {
    margin: 0 0 96px;
  }
}
.page-skin-troubles .ordered-list01 h3 {
  color: #041B2B;
  position: relative;
  padding: 20px 0 0 107px;
  font-size: 1.5625rem;
  font-weight: bold;
  margin: 0 0 38px;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3 {
    font-size: 1.4375rem;
    padding: 20px 0 0 85px;
    margin: 38px 0 14px;
  }
}
.page-skin-troubles .ordered-list01 h3::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: #041B2B;
  position: absolute;
  z-index: -1;
  top: 21px;
  right: 1130px;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3::before {
    right: unset;
    left: -10px;
    width: 30px;
    top: 28px;
  }
}
.page-skin-troubles .ordered-list01 h3::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #041B2B;
  border-radius: 100px;
  display: block;
  position: absolute;
  right: 1129px;
  top: 19px;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3::after {
    top: 26px;
    left: 15px;
    right: unset;
  }
}
.page-skin-troubles .ordered-list01 h3 img {
  position: absolute;
  top: -2px;
  left: 112px;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3 img {
    left: 88px;
  }
}
.page-skin-troubles .ordered-list01 h3:nth-of-type(1) {
  background: url(img/trouble/cause-number-01.svg) no-repeat 30px 0;
  background-size: 55px auto;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3:nth-of-type(1) {
    background-size: auto 30px;
    background-position: 30px 10px;
  }
}
.page-skin-troubles .ordered-list01 h3:nth-of-type(2) {
  background: url(img/trouble/cause-number-02.svg) no-repeat 30px 0;
  background-size: 65px auto;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3:nth-of-type(2) {
    background-size: auto 30px;
    background-position: 30px 10px;
  }
}
.page-skin-troubles .ordered-list01 h3:nth-of-type(3) {
  background: url(img/trouble/cause-number-03.svg) no-repeat 30px 0;
  background-size: 65px auto;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3:nth-of-type(3) {
    background-size: auto 30px;
    background-position: 30px 10px;
  }
}
.page-skin-troubles .ordered-list01 h3:nth-of-type(4) {
  background: url(img/trouble/cause-number-04.svg) no-repeat 30px 0;
  background-size: 65px auto;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list01 h3:nth-of-type(4) {
    background-size: auto 30px;
    background-position: 30px 10px;
  }
}
.page-skin-troubles .ordered-list01 p {
  margin: 0 0 48px 30px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list01 p {
    margin: 0 0 89px 33px;
  }
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 {
    position: relative;
  }
}
.page-skin-troubles .ordered-list02 .item {
  margin: 0 0 48px;
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item {
    margin: 63px 0 182px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-skin-troubles .ordered-list02 .item .item-cont {
    margin: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item .item-cont {
    margin: auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 1101px) {
  .page-skin-troubles .ordered-list02 .item .item-cont {
    max-width: 1100px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1100px) {
  .page-skin-troubles .ordered-list02 .item .item-cont {
    width: 100%;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item .item-cont {
    width: 100%;
    margin: auto;
    padding: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) .img-wrap::after {
    left: auto;
    right: -17px;
  }
}
.page-skin-troubles .ordered-list02 .item h3 {
  color: #BF9D84;
  font-size: 1.5625rem;
  margin: 0 0 32px;
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item h3 {
    padding: 215px 0 2px;
    font-weight: bold;
    margin: 0 0 22px;
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item h3 {
    font-size: 1.4375rem;
    font-weight: normal;
    padding: 68px 0 50px;
  }
}
.page-skin-troubles .ordered-list02 .item h3::before {
  content: url(img/trouble/number-01.svg);
  width: 128px;
  height: 104px;
  position: absolute;
  top: 62px;
  left: 7px;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-01.svg) no-repeat 0 0/contain;
    top: 0;
    left: 0;
  }
}
.page-skin-troubles .ordered-list02 .item h3::after {
  content: "";
  display: block;
  width: 522px;
  height: 1px;
  background: #041B2B;
  position: absolute;
  left: 209px;
  top: 106px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-skin-troubles .ordered-list02 .item h3::after {
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item h3::after {
    left: unset;
    width: 24vw;
    right: 50%;
    top: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-skin-troubles .ordered-list02 .item p {
    width: 59%;
  }
}
@media screen and (min-width: 1101px) {
  .page-skin-troubles .ordered-list02 .item p {
    width: 617px;
    line-height: 1.5;
  }
}
.page-skin-troubles .ordered-list02 .item .img-wrap {
  position: absolute;
  z-index: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item .img-wrap {
    width: 50%;
  }
}
.page-skin-troubles .ordered-list02 .item .img-wrap::after {
  content: "";
  display: block;
  width: 102px;
  height: 102px;
  background: #041B2B;
  position: absolute;
  bottom: -16px;
  left: -17px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item .img-wrap::after {
    width: 27px;
    height: 28px;
    bottom: -6px;
    left: -6px;
  }
}
.page-skin-troubles .ordered-list02 .item .img-wrap img {
  max-width: 804px;
  width: 40vw;
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item .img-wrap img {
    width: 100%;
    height: 152px;
    object-fit: cover;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(odd) .img-wrap::before {
  left: 17px;
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) h3, .page-skin-troubles .ordered-list02 .item:nth-of-type(even) p {
    margin-left: 44%;
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) h3 {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) h3::before {
    right: 6px;
    left: unset;
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) h3::before {
    right: 0;
    left: unset;
  }
}
@media screen and (min-width: 768px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) h3::after {
    right: 199px;
    left: unset;
  }
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(even) h3::after {
    left: 50%;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(even) .img-wrap {
  left: 0;
  right: unset;
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(even) .img-wrap::before {
  right: -17px;
  left: 0;
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(2) h3::before {
  content: url(img/trouble/number-02.svg);
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(2) h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-02.svg) no-repeat 0 0/contain;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(3) h3::before {
  content: url(img/trouble/number-03.svg);
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(3) h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-03.svg) no-repeat 0 0/contain;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(4) h3::before {
  content: url(img/trouble/number-04.svg);
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(4) h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-04.svg) no-repeat 0 0/contain;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(5) h3::before {
  content: url(img/trouble/number-05.svg);
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(5) h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-05.svg) no-repeat 0 0/contain;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(6) h3::before {
  content: url(img/trouble/number-06.svg);
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(6) h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-06.svg) no-repeat 0 0/contain;
  }
}
.page-skin-troubles .ordered-list02 .item:nth-of-type(7) h3::before {
  content: url(img/trouble/number-07.svg);
}
@media screen and (max-width: 767px) {
  .page-skin-troubles .ordered-list02 .item:nth-of-type(7) h3::before {
    content: "";
    width: 51px;
    height: 40px;
    background: url(img/trouble/number-07.svg) no-repeat 0 0/contain;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 20px 0 0;
}
.pagination a, .pagination .page-numbers {
  text-decoration: none;
  padding: 10px 15px;
  margin: 0 5px;
  color: #000;
  line-height: 1.2;
  transition: background-color 0.3s;
  border-radius: 100px;
}
.pagination a:hover, .pagination .page-numbers:hover {
  background-color: #f0f0f0;
}
.pagination .active, .pagination .current {
  background-color: #E1DDDA;
  font-weight: bold;
}
.pagination .prev,
.pagination .next {
  font-weight: bold;
}

.page-search-clinic .search-area {
  padding: 37px 0 90px;
  margin: 111px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-search-clinic .search-area {
    max-width: 1920px;
    margin: 164px 7vw 289px;
    padding: 190px 0;
  }
}
.page-search-clinic .search-area .search-condition {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .page-search-clinic .search-area .search-condition {
    outline-offset: -16px;
    padding: 32px 31px;
    margin: 48px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .search-area .search-condition .search-item {
    margin: 0px 0 5px 1px;
    font-size: 0.875rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-search-clinic .search-area .search-condition .search-item {
    gap: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .search-area .search-condition .search-item ul {
    margin-top: 3px;
  }
}
.page-search-clinic .search-area .search-condition .search-item p {
  padding: 4px 0 18px 48px;
}
@media screen and (min-width: 768px) {
  .page-search-clinic .search-area .search-condition .search-item p {
    padding: 0 0 0 65px;
  }
}
@media screen and (min-width: 768px) {
  .page-search-clinic .search-area .search-condition .search-item select#prefectures {
    font-size: 0.875rem;
    padding: 9px 10px;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .search-area .search-condition .search-item label {
    padding-left: 28px;
  }
}
@media screen and (min-width: 768px) {
  .page-search-clinic .search-area .search-condition .search-item label {
    font-size: 0.875rem;
  }
}
.page-search-clinic .search-area .search-condition .search-item.type-ad {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .page-search-clinic .search-area .search-condition .search-item.type-ad {
    padding: 20px 0 30px;
    background-position: 0 19px;
    margin: 26px 0 0;
  }
  .page-search-clinic .search-area .search-condition .search-item.type-ad p {
    padding: 5px 0px 5px 46px;
    margin-right: 18px;
  }
}
.page-search-clinic .search-area::before {
  width: 924px;
  height: 1007px;
  top: -90px;
  left: -343px;
}
@media screen and (max-width: 767px) {
  .page-search-clinic .search-area::before {
    width: 254px;
    height: 241px;
    top: -30px;
    left: -50px;
    background-size: contain;
  }
}
.page-search-clinic .result-area {
  padding: 138px 0 218px;
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area {
    padding: 94px 10px;
    margin-bottom: 220px;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area .inner {
    border-top: 15px solid #0e293c;
    padding: 10px 11px;
  }
}
@media screen and (min-width: 768px) {
  .page-search-clinic .result-area .inner {
    padding: 32px 59px;
  }
}
.page-search-clinic .result-area .search-result {
  background: none;
  padding: 0;
  margin: 10px 0 54px 5px;
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area .search-result {
    margin: -2px 0 14px 5px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area .search-result b {
    font-size: 2.625rem;
  }
}
.page-search-clinic .result-area .clinic-list {
  padding: 0 0 32px;
  border: none;
}
.page-search-clinic .result-area .clinic-list a {
  background: #F9F9F9;
  padding: 15px;
  display: block;
}
@media screen and (min-width: 768px) {
  .page-search-clinic .result-area .clinic-list a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 19px 22px 22px;
  }
}
.page-search-clinic .result-area .clinic-list a .clinic-title {
  font-size: 1.25rem;
  border-left: 6px solid #BF9D84;
  padding: 6px 20px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .page-search-clinic .result-area .clinic-list a .clinic-title {
    flex: 0 0 334px;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area .clinic-list a .clinic-title {
    padding: 8px 16px 9px;
    margin: 0 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area .clinic-list a {
    width: auto;
  }
}
.page-search-clinic .result-area .clinic-list .info-ad {
  padding: 0 0 13px 30px;
  background-size: 21px 21px;
  background-repeat: no-repeat;
  background-position: 0 2px;
  background-image: url(img/nv-ad.svg);
}
@media screen and (min-width: 768px) {
  .page-search-clinic .result-area .clinic-list .info-ad {
    width: 471px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding-bottom: 0;
    margin-right: 20px;
  }
}
.page-search-clinic .result-area .clinic-list .txt-link {
  padding: 0px 16px 1px 13px;
}
@media screen and (max-width: 767px) {
  .page-search-clinic .result-area .clinic-list .txt-link {
    display: block;
    width: 110px;
    margin: 0 0 0 calc(100% - 128px);
  }
}

.page-clinic-detail .result-area {
  background: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .page-clinic-detail .result-area {
    padding: 70px 0 0;
  }
}
.page-clinic-detail .result-area .inner {
  padding: 0;
  border: none;
}
.page-clinic-detail .result-area .inner .clinic-list {
  border-top: 14px solid #0e293c;
  background-color: #F9F9F9;
  padding: 63px;
  margin: 0 auto 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-clinic-detail .result-area .inner .clinic-list {
    padding: 70px 20px 30px;
    margin: 0 10px 22px;
    border-top-width: 14px;
  }
}
.page-clinic-detail .result-area .inner .clinic-list .btn {
  padding: 27px 91px 25px 84px;
}
@media screen and (max-width: 767px) {
  .page-clinic-detail .result-area .inner .clinic-list .btn {
    margin-bottom: 0;
  }
}
.page-clinic-detail .result-area .inner .clinic-list .btn::before {
  right: 20px;
  width: 28px;
  height: 22px;
}
.page-clinic-detail .result-area .inner .search-btn {
  display: block;
  color: #fff;
  background: #0e293c;
  border: 3px solid #BF9D84;
  text-align: center;
  padding: 27px 91px 25px 92px;
  font-size: 14px;
  position: relative;
  margin: auto;
  width: 302px;
  transition: all ease-in 0.3s;
}
@media screen and (max-width: 767px) {
  .page-clinic-detail .result-area .inner .search-btn {
    margin-bottom: 0;
  }
}
.page-clinic-detail .result-area .inner .search-btn::before {
  content: "";
  background: url(img/icon-search.svg) no-repeat 0 0;
  width: 17px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  display: block;
  margin: auto;
}
.page-clinic-detail .result-area .inner .search-btn:hover {
  background-color: #BF9D84;
}

.page-news .news-item {
  margin: 146px 0 70px;
}
@media screen and (max-width: 767px) {
  .page-news .news-item {
    margin: 106px 0 180px;
  }
}
.page-news .news-item li {
  border-bottom: 1px solid #0C2C43;
}
.page-news .news-item li a {
  position: relative;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .page-news .news-item li a {
    margin: 32px 0;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .page-news .news-item li a {
    display: flex;
    align-items: flex-start;
    padding: 32px 150px 32px 0;
  }
}
.page-news .news-item li a .date {
  font-size: 0.875rem;
  background: #E1DDDA;
  padding: 10px 17px;
  margin-right: 17px;
}
.page-news .news-item li a .news-title {
  display: block;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .page-news .news-item li a .news-title {
    padding: 16px 0 40px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-news .news-item li a .txt-link {
    position: absolute;
    right: 14px;
    top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .page-news .news-item li a .txt-link {
    position: absolute;
    right: 13px;
    bottom: 0;
  }
}

.page-news-detail .news-meta {
  margin-top: 233px;
}
@media screen and (max-width: 767px) {
  .page-news-detail .news-meta {
    margin-top: 107px;
  }
}
.page-news-detail .date {
  font-size: 0.875rem;
  background: #E1DDDA;
  padding: 10px 17px;
  margin-right: 17px;
}
.page-news-detail .page-detail-title {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 32px 0;
  margin: 0 0 64px;
  border-bottom: 1px solid #0e293c;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-news-detail .page-detail-title {
    font-size: 1.4375rem;
    line-height: 1.696;
  }
}
.page-news-detail .page-detail-title::before {
  content: "";
  width: 35px;
  height: 5px;
  background: #BF9D84;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.page-news-detail .txt-link-wrap {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .page-news-detail .txt-link-wrap {
    margin-top: 3.375rem;
  }
}
@media screen and (max-width: 767px) {
  .page-news-detail .txt-link-wrap {
    margin-top: 4rem;
    padding-right: 30px;
  }
}

.float-wrap {
  margin: 10px 0 60px;
}
@media screen and (min-width: 768px) {
  .float-wrap {
    grid-column-gap: 60px;
    display: grid;
  }
}
@media screen and (min-width: 768px) {
  .float-wrap.fl .float-title {
    grid-area: 1/1/2/2;
  }
  .float-wrap.fl .float-img {
    grid-area: 1/2/3/3;
  }
  .float-wrap.fl .float-txt {
    grid-area: 2/1/3/2;
  }
}
@media screen and (min-width: 768px) {
  .float-wrap.fr .float-title {
    grid-area: 1/2/2/3;
  }
  .float-wrap.fr .float-img {
    grid-area: 1/1/3/2;
  }
  .float-wrap.fr .float-txt {
    grid-area: 2/2/3/3;
  }
}
.float-wrap .float-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.25rem;
  border-left: 1px solid #BF9D84;
  padding: 0 0 0 17px;
  margin: 0 0 32px;
}
@media screen and (max-width: 767px) {
  .float-wrap .float-img {
    margin: 0 0 32px;
  }
}
@media screen and (min-width: 768px) {
  .float-wrap .float-img img {
    max-width: 450px;
  }
}
.float-wrap .float-txt p {
  line-height: 2;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.news-content p {
  margin-bottom: 30px;
}
.news-content a {
  text-decoration: underline;
}
.news-content a:hover {
  text-decoration: none;
}

.wp-block-heading {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  font-size: 1.25rem;
  border-left: 1px solid #BF9D84;
  padding: 0 0 0 17px;
  margin: 0 0 32px;
}

@media screen and (min-width: 768px) {
  .wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__content {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-media-text .wp-block-media-text__content {
    padding-inline: 0 !important;
  }
  .wp-block-media-text .wp-block-media-text__media {
    padding-bottom: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .page-faq .contents {
    margin-bottom: 210px;
  }
}

.faq-area {
  position: relative;
  z-index: 0;
  padding: 0 0 30px;
  margin: 62px 0;
}
@media screen and (max-width: 767px) {
  .faq-area {
    margin: 0 0 32px;
  }
}
.faq-area::after {
  content: "";
  background-color: #e1ddda;
  height: calc(100% - 32px);
  width: calc(100% - 40px);
  position: absolute;
  top: 32px;
  left: 40px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .faq-area::after {
    height: calc(100% - 30px);
    width: calc(100% - 19px);
    top: 30px;
    left: 19px;
  }
}
.faq-area .question {
  background: url(img/faq/icon-question.svg) no-repeat 20px 19px #0e293c;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  transition: all ease-in 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq-area .question {
    padding: 32px 32px 32px 92px;
    margin: 0 24px 0 5px;
  }
  .faq-area .question:hover {
    background: url(img/faq/icon-question-hover.svg) no-repeat 20px 19px #BF9D84;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .faq-area .question {
    font-size: 1.125rem;
    padding: 18px 50px 24px 47px;
    margin: 0 17px 0 0;
    background-size: 27px auto;
    background-position: 11px 50%;
  }
}
.faq-area .question::before, .faq-area .question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 2px;
  height: 30px;
  background: #fff;
  transition: all ease-in 0.3s;
}
@media screen and (max-width: 767px) {
  .faq-area .question::before, .faq-area .question::after {
    height: 14px;
    right: 20px;
  }
}
.faq-area .question::before {
  transform: translate(-50%, -50%);
}
.faq-area .question::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-area .question.open::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq-area .answer {
  display: none;
  background: url(img/faq/icon-answer.svg) no-repeat 33px 52px;
  margin: 0 0 0 40px;
  padding: 42px 30px 20px 102px;
}
@media screen and (max-width: 767px) {
  .faq-area .answer {
    margin: 0 0 0 20px;
    padding: 24px 30px 0 61px;
    background-size: 35px auto;
    background-position: 15px 27px;
  }
}
.faq-area .answer.open {
  display: block;
}
.faq-area .answer p {
  font-size: 1.125rem;
  line-height: 1.667;
}
.faq-area .answer p + ul {
  margin-top: 15px;
}
.faq-area .answer a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .faq-area .answer a:hover {
    text-decoration: none;
  }
}

.page-about .contents {
  margin-bottom: 149px;
}
@media screen and (min-width: 768px) {
  .page-about .contents {
    margin-bottom: 254px;
  }
}
.page-about .float-type01 {
  margin: 61px 0 0 -7px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-about .float-type01 {
    align-items: flex-start;
    grid-template-rows: 124px calc(100% - 124px);
    grid-template-columns: auto 49%;
    grid-column-gap: 50px;
    margin: 10px 0 145px;
  }
}
.page-about .float-type01::before {
  content: "";
  display: block;
  width: 177px;
  height: 177px;
  background: url(img/about/bg-circle01.svg);
  position: absolute;
  top: 0;
  left: -90px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-about .float-type01::before {
    width: 147px;
    height: 147px;
    background: url(img/about/bg-circle01.svg) no-repeat 0 0/contain;
    left: -40px;
    top: -43px;
  }
}
.page-about .float-type01 .float-title {
  color: #041B2B;
  border: none;
  position: relative;
  padding: 32px 0;
  z-index: 0;
  font-size: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .page-about .float-type01 .float-title {
    padding: 0px 0 10px 60px;
    font-weight: 500;
    margin: 83px 0 3px;
    font-size: 1.25rem;
  }
}
.page-about .float-type01 .float-title::after {
  content: "";
  width: 115%;
  height: 1px;
  background: #BF9D84;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 768px) {
  .page-about .float-type01 .float-title::after {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-about .float-type01 .float-title::after {
    height: 130%;
    width: 1px;
    top: 0;
    left: 39px;
  }
}
.page-about .float-type01 .float-img {
  position: relative;
  z-index: -1;
}
.page-about .float-type01 .float-img img {
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .page-about .float-type01 .float-img img {
    width: 100%;
    height: 177px;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .page-about .float-type01 .float-img {
    margin-left: 25px;
    margin-bottom: 25px;
  }
}
.page-about .float-type01 .float-img::before {
  content: "";
  width: 54px;
  height: 54px;
  background: #0e293c;
  z-index: -1;
  position: absolute;
  bottom: -12px;
  left: -12px;
}
@media screen and (min-width: 768px) {
  .page-about .float-type01 .float-img::before {
    width: 85px;
    height: 85px;
    left: -17px;
    bottom: -17px;
  }
}
.page-about .float-type01 .float-txt p {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .page-about .float-type01 .float-txt p {
    line-height: 1.5;
    margin-left: 6px;
  }
}
.page-about .recommend {
  position: relative;
  margin: 50px 0 135px;
  padding: 25px 0 0;
}
@media screen and (min-width: 768px) {
  .page-about .recommend {
    display: flex;
    flex-wrap: wrap;
    padding: 149px 0;
    margin: 0 0 205px;
  }
}
.page-about .recommend::before {
  content: "";
  background: #0C2C43;
  height: 219px;
  width: 302px;
  position: absolute;
  top: 0;
  left: -10px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-about .recommend::before {
    width: 1113px;
    height: 330px;
    right: 55px;
    left: unset;
  }
}
.page-about .recommend::after {
  content: "";
  background: #BF9D84;
  height: 1px;
  width: 106px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  left: -68px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-about .recommend::after {
    position: absolute;
    top: 37px;
    bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .page-about .recommend::after {
    bottom: unset;
    top: 40px;
    width: 96px;
  }
}
.page-about .recommend .recommend-title {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  padding-left: 49px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-about .recommend .recommend-title {
    position: absolute;
    top: 17px;
    left: 0px;
  }
}
@media screen and (min-width: 768px) {
  .page-about .recommend .recommend-title {
    font-size: 1.5625rem;
    padding-left: 60px;
  }
}
.page-about .recommend ul {
  border: 1px solid #0C2C43;
  background: #fff;
  padding: 32px 32px 37px 33px;
  margin: 24px 0 0;
}
@media screen and (min-width: 768px) {
  .page-about .recommend ul {
    width: 758px;
    padding: 65px 41px 43px;
    position: absolute;
    right: 0;
    top: 42px;
  }
}
.page-about .scroll-table {
  margin: -15px 0 0;
}
@media screen and (max-width: 767px) {
  .page-about .scroll-table {
    margin: 45px 0 0;
  }
}
.page-about .scroll-table table {
  margin: 0;
  width: 1099px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-about .scroll-table table {
    width: 860px;
    table-layout: fixed;
  }
}
.page-about .scroll-table table th {
  font-weight: normal;
  padding: 15px 17px;
  width: 169px !important;
}
@media screen and (max-width: 767px) {
  .page-about .scroll-table table th.fix-cell {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 40px !important;
    font-size: 0.75rem;
  }
}
.page-about .scroll-table table th.fix-cell::before {
  content: "";
  height: 100px;
  width: 1px;
  background: #fff;
  top: 0;
  right: -1px;
  display: block;
  z-index: 1;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .page-about .scroll-table table th {
    width: 103px !important;
  }
}
.page-about .scroll-table table td {
  padding: 26px 20px;
  width: 280px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .page-about .scroll-table table td ul {
    padding: 0;
  }
}

.page-flow .inner {
  position: relative;
}
.page-flow .contents {
  margin-top: 0;
  position: relative;
  z-index: 0;
}

.arrow-wrap {
  position: absolute;
  top: 0;
  overflow: hidden; /* 矢印をクリップするための設定 */
  z-index: -1;
  height: 100%;
  animation: flow-arrow 3s ease-in;
  background: url(img/flow/bg-flow.svg) no-repeat 0 0;
}
@media screen and (min-width: 768px) {
  .arrow-wrap {
    top: -532px;
    left: 6.5vw;
  }
}

@keyframes flow-arrow {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.flow-wrap {
  padding: 183px 0 1px 10px;
  margin: -11px 0 0 -10px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .flow-wrap {
    padding: 19vw 0 26px;
  }
}
@media screen and (min-width: 1101px) {
  .flow-wrap {
    padding: 226px 0 26px;
    background-position: 110px 0;
    margin: unset;
  }
}
.flow-wrap .float-wrap {
  position: relative;
  margin: 10px 0 126px;
}
@media screen and (min-width: 1101px) {
  .flow-wrap .float-wrap {
    margin: 0 0 174px;
    grid-column-gap: 83px;
    align-items: flex-start;
    grid-template-rows: 65px auto;
  }
}
.flow-wrap .float-wrap::before {
  content: "";
  background: url(img/flow/txt-step01.svg) no-repeat 0 0/contain;
  width: 100%;
  height: 48px;
  position: absolute;
  top: -68px;
  left: 4px;
}
@media screen and (max-width: 767px) {
  .flow-wrap .float-wrap::before {
    width: 300px;
    height: 42px;
    top: -18px;
    left: 3px;
  }
}
.flow-wrap .float-wrap:nth-of-type(2)::before {
  background-image: url(img/flow/txt-step02.svg);
}
.flow-wrap .float-wrap:nth-of-type(3)::before {
  background-image: url(img/flow/txt-step03.svg);
}
.flow-wrap .float-wrap:nth-of-type(4)::before {
  background-image: url(img/flow/txt-step04.svg);
}
.flow-wrap .float-wrap:nth-of-type(5)::before {
  background-image: url(img/flow/txt-step05.svg);
}
.flow-wrap .float-wrap:nth-of-type(6)::before {
  background-image: url(img/flow/txt-step06.svg);
}
@media screen and (max-width: 767px) {
  .flow-wrap .float-wrap:nth-of-type(7) {
    margin-bottom: 50px;
  }
}
.flow-wrap .float-wrap:nth-of-type(7)::before {
  background-image: url(img/flow/txt-step07.svg);
}
.flow-wrap .float-wrap h2 {
  font-size: 1.25rem;
  color: #fff;
  background: #0e293c;
  padding: 13px 10px 10px 21px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .flow-wrap .float-wrap h2 {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .flow-wrap .float-wrap h2 {
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .flow-wrap .float-wrap .float-img {
    margin: 0 0 15px;
  }
}
.flow-wrap .float-wrap .float-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .flow-wrap .float-wrap .float-img img {
    max-width: unset;
  }
}
.flow-wrap .float-wrap p {
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .flow-wrap .float-wrap p {
    width: 550px;
  }
}

.case-wrap {
  margin: 152px 0;
}
@media screen and (min-width: 768px) {
  .case-wrap:nth-of-type(1) {
    margin: 184px 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .case-wrap:nth-of-type(2) .case-heading h2::before {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .case-wrap {
    margin: 108px 0 101px;
  }
}
.case-wrap .case-heading {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 72px;
}
.case-wrap .case-heading h2 {
  z-index: 0;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .case-wrap .case-heading h2 {
    margin: 0 17px -15px -10px;
    padding: 39px 0 39px 45px;
    background-color: #e1ddda;
    line-height: 1.429;
    width: 100%;
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .case-wrap .case-heading h2 {
    width: calc(100% - 515px);
    padding: 93px 30px 0 33px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1100px) {
  .case-wrap .case-heading h2 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .case-wrap .case-heading h2::before {
    content: "";
    width: 100%;
    height: 102px;
    background-color: #E1DDDA;
    position: absolute;
    z-index: -1;
    top: 60px;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1100px) {
  .case-wrap .case-heading h2::before {
    height: 142px;
  }
}
.case-wrap .case-heading h2::after {
  content: "";
  width: 100%;
  height: 29px;
  background: url(img/effect/txt-case01.svg) no-repeat 0 0;
  position: absolute;
  z-index: 0;
  top: 48px;
  left: 2px;
}
@media screen and (max-width: 767px) {
  .case-wrap .case-heading h2::after {
    top: -13px;
    left: 23px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .case-wrap .case-heading img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .case-wrap .case-heading img {
    margin: 0 0 0 24px;
    width: calc(100% - 24px);
  }
}
.case-wrap h3 {
  font-size: 1.5625rem;
  background: url(img/effect/bg-heading.svg) no-repeat left center;
  padding: 0 0 0 49px;
  margin: 0 0 49px;
}
.case-wrap h3::before {
  content: "";
  background: url(img/effect/txt-treatment-method.svg) no-repeat 0 0/contain;
  width: 157px;
  height: 12px;
  top: -33px;
  left: 0;
  display: block;
  position: absolute;
}
.case-wrap .flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .case-wrap .flex-box .box {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .case-wrap .flex-box .box {
    margin-bottom: 25px;
  }
}
.case-wrap .flex-box .box h4 {
  font-size: 1.4375rem;
  color: #BF9D84;
  position: relative;
  border-bottom: 1px solid #0C2C43;
  padding: 0 0 33px;
  margin: 0 0 30px;
}
.case-wrap .flex-box .box h4::before {
  content: "";
  width: 22px;
  height: 3px;
  display: block;
  background: #BF9D84;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.case-wrap .flex-box .box p {
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .case-wrap .flex-box.three-box h4 {
    height: 102px;
  }
}
@media screen and (min-width: 768px) {
  .case-wrap .flex-box.three-box .box {
    width: 30%;
  }
}
.case-wrap:nth-of-type(2) h2::after {
  background-image: url(img/effect/txt-case02.svg);
}
.case-wrap:nth-of-type(3) h2::after {
  background-image: url(img/effect/txt-case03.svg);
}
.case-wrap:nth-of-type(4) h2::after {
  background-image: url(img/effect/txt-case04.svg);
}
.case-wrap:nth-of-type(5) h2::after {
  background-image: url(img/effect/txt-case05.svg);
}

.case-wrap02 {
  margin-bottom: 139px;
}
@media screen and (max-width: 767px) {
  .case-wrap02 {
    margin-bottom: 79px;
  }
}

.circle-title {
  font-size: 1.25rem;
  color: #041B2B;
  font-weight: bold;
  position: relative;
  z-index: 0;
  padding: 5px 0 5px 87px;
  margin-bottom: 32px;
}
.circle-title::before {
  content: "";
  width: 46px;
  aspect-ratio: 1;
  background: #EBE1D9;
  display: block;
  border-radius: 100px;
  position: absolute;
  top: -2px;
  left: 0;
}
.circle-title::after {
  content: "";
  width: 48px;
  height: 1px;
  background: #0e293c;
  display: block;
  position: absolute;
  top: 20px;
  left: 23px;
}

@media screen and (max-width: 767px) {
  .table-type01 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .table-type01 th {
    border-bottom: 3px solid #BF9D84;
  }
}
@media screen and (min-width: 768px) {
  .table-type01 td {
    border-bottom: 1px solid #0e293c;
  }
}

.page-company .table-type01 {
  margin: 110px 0;
}
@media screen and (min-width: 768px) {
  .page-company .table-type01 {
    margin: 146px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-company .table-type01 tr {
    border-bottom: 1px solid #0e293c;
    position: relative;
    margin-bottom: 34px;
    display: block;
  }
  .page-company .table-type01 tr::before {
    content: "";
    width: 90px;
    height: 5px;
    background: #BF9D84;
    position: absolute;
    left: 0;
    bottom: -3px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .page-company .table-type01 th {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-company .table-type01 th {
    text-align: left;
    width: 90px;
    padding: 34px 0 30px;
    vertical-align: top;
  }
}
@media screen and (max-width: 767px) {
  .page-company .table-type01 td {
    width: 100%;
    display: block;
    padding: 8px 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .page-company .table-type01 td {
    padding: 38px 40px 32px;
  }
}

@media screen and (min-width: 768px) {
  .permit-number {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }
}
.permit-number dt {
  position: relative;
  padding: 0 0 0 16px;
}
@media screen and (min-width: 768px) {
  .permit-number dt {
    width: 340px;
  }
}
.permit-number dt::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #0e293c;
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
}
.permit-number dd {
  background: url(img/line-dot.svg) no-repeat left center;
  padding: 0 0 0 47px;
}
@media screen and (min-width: 768px) {
  .permit-number dd {
    width: calc(100% - 370px);
  }
}
@media screen and (max-width: 767px) {
  .permit-number dd {
    margin: 0 0 16px 20px;
  }
}

.page-privacy .contents {
  margin-bottom: 100px;
}
.page-privacy .contents p {
  margin-bottom: 50px;
}
.page-privacy .contents ol {
  margin-bottom: 40px;
}
.page-privacy .contents ol ul {
  margin-top: 5px;
}
.page-privacy .contents li {
  margin-bottom: 6px;
}

@media screen and (max-width: 767px) {
  .top-link {
    margin: 100px 0 32px;
  }
}
.top-link a {
  background: #E1DDDA;
  font-size: 1.125rem;
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  padding: 27px 32px;
}

.sitemap-flex {
  margin: 0 0 100px;
}
@media screen and (min-width: 768px) {
  .sitemap-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 100px;
  }
}
@media screen and (min-width: 768px) {
  .sitemap-flex .sitemap {
    width: 50%;
  }
}
.sitemap-flex .sitemap li {
  position: relative;
  padding: 10px 0 10px 30px;
}
@media screen and (max-width: 767px) {
  .sitemap-flex .sitemap li {
    padding: 0 0 0 30px;
  }
}
.sitemap-flex .sitemap li::before {
  content: "";
  width: 20px;
  height: 1px;
  background: #BF9D84;
  position: absolute;
  left: 0;
  top: 33px;
}
@media screen and (max-width: 767px) {
  .sitemap-flex .sitemap li::before {
    top: 24px;
  }
}
.sitemap-flex .sitemap li a {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding: 10px;
}
.sitemap-flex .sitemap li .submenu {
  margin: 0 0 0 11px;
}
.sitemap-flex .sitemap li .submenu li {
  padding: 0 0 0 16px;
}
.sitemap-flex .sitemap li .submenu li::before {
  width: 8px;
  height: 1px;
  margin: unset;
  top: 24px;
}
.sitemap-flex .sitemap li .submenu li::after {
  content: "";
  width: 1px;
  height: 8px;
  background: #BF9D84;
  position: absolute;
  left: 0;
  top: 16px;
}

.page-404 .contents {
  margin-bottom: 100px;
}
.page-404 .contents .txt-link-wrap {
  margin: 90px 0;
}