@charset "UTF-8";
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
  header .header-middle {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  header .header-middle {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  header .pc {
    display: none;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  color: #624524;
  text-align: center;
}

p {
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width:540px) {
  p {
    font-size: 14px;
  }
}

ul li {
  list-style: none;
}

h2 {
  font-size: 40px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width:540px) {
  h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
}

h3 {
  font-size: 25px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width:540px) {
  h3 {
    font-size: 23px;
    margin-bottom: 25px;
  }
}

section {
  padding: 100px 0;
}
@media screen and (max-width:540px) {
  section {
    padding: 60px 0px;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width:1200px) {
  .container {
    width: 85%;
  }
}
@media screen and (max-width:540px) {
  .container {
    width: 93%;
  }
}

.sub-container {
  max-width: 960px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width:1200px) {
  .sub-container {
    width: 80%;
  }
}
@media screen and (max-width:540px) {
  .sub-container {
    width: 93%;
  }
}

.mini-container {
  max-width: 700px;
  margin: auto;
  width: 100%;
}
@media screen and (max-width:1200px) {
  .mini-container {
    width: 80%;
  }
}
@media screen and (max-width:540px) {
  .mini-container {
    width: 95%;
  }
}

img {
  width: 100%;
  display: block;
}

.base-img {
  max-width: 500px;
  margin: 35px auto;
}
@media screen and (max-width:540px) {
  .base-img {
    max-width: 260px;
    margin: 25px auto;
  }
}

a {
  display: block;
  text-decoration: none;
  font-size: 35px;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width:540px) {
  a {
    font-size: 24px;
  }
}

footer {
  background-color: #36322F;
  color: #ffffff;
  padding: 30px 15px;
}
footer img {
  max-width: 210px;
  margin: 0 auto 20px auto;
}
footer .footer-text {
  margin-top: 30px;
}
footer .footer-text p {
  font-size: 14px;
}
@media screen and (max-width:540px) {
  footer .footer-text p {
    font-size: 12px;
  }
}
footer .footer-text p a {
  font-size: 14px;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width:540px) {
  footer .footer-text p a {
    font-size: 12px;
  }
}
footer .footer-text .clinic-info {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width:540px) {
  footer .footer-text .clinic-info {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    text-align: left;
  }
}
footer .footer-text .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
@media screen and (max-width:540px) {
  footer .footer-text .copyright {
    flex-direction: column;
    gap: 4px;
  }
}
footer .footer-text .copyright a {
  font-size: 14px;
  color: #ffffff;
}
@media screen and (max-width:540px) {
  footer .footer-text .copyright a {
    font-size: 12px;
  }
}

.text-red {
  color: #BA775B;
  font-weight: bold;
}

span.bold {
  font-weight: 700;
}

span.small {
  font-size: 70%;
}

.marker {
  background: linear-gradient(transparent 5%, #FFFBD1 5%);
  font-weight: bold;
}

.half-marker {
  background: linear-gradient(transparent 50%, #FFFBD1 50%);
  padding-bottom: 2px;
  font-weight: bold;
}

/* メイン */
section.header-cta {
  background: url(../img/cta-bg.jpg) top center/cover no-repeat;
  padding: 60px 0;
  border-bottom: 4px solid #fff;
}
@media screen and (max-width:540px) {
  section.header-cta {
    padding: 30px 15px;
  }
}

.cta-area {
  font-weight: 700;
}
.cta-area p {
  text-align: center;
  color: #624524;
  font-size: 25px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width:540px) {
  .cta-area p {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.cta-area p::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #624524;
  transform: rotate(65deg);
}
@media screen and (max-width:540px) {
  .cta-area p::before {
    width: 20px;
  }
}
.cta-area p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12%;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #624524;
  transform: rotate(-65deg);
}
@media screen and (max-width:540px) {
  .cta-area p::after {
    width: 20px;
  }
}
.cta-area a {
  background: #B19526;
  font-size: 30px;
  max-width: 700px;
  margin: 0 auto;
  padding: 35px 15px;
  color: #fff;
  border-radius: 10px;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  .cta-area a {
    max-width: 500px;
    font-size: 22px;
  }
}
@media screen and (max-width:540px) {
  .cta-area a {
    font-size: 18px;
    max-width: 300px;
    padding: 25px 15px;
  }
}
.cta-area a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 3px #FFDF57;
  border-right: solid 3px #FFDF57;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width:540px) {
  .cta-area a::before {
    width: 8px;
    height: 8px;
    border-bottom: solid 2px #FFDF57;
    border-right: solid 2px #FFDF57;
    right: 15px;
  }
}
.cta-area a:hover {
  opacity: 0.7;
}

section.trial img.title-back {
  max-width: 180px;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.trial img.title-back {
    max-width: 120px;
  }
}
section.trial .trial-wrapper {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 10px;
}
section.trial .trial-wrapper a {
  width: calc(50% - 10px);
}
@media screen and (max-width:540px) {
  section.trial .trial-wrapper {
    display: block;
  }
  section.trial .trial-wrapper a {
    width: 100%;
  }
}
section.trial .cta-area {
  margin-top: 40px;
}
@media screen and (max-width:540px) {
  section.trial .cta-area {
    margin-top: 30px;
  }
}
section.trial p.trial-bottom {
  margin-top: 60px;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width:540px) {
  section.trial p.trial-bottom {
    margin-top: 30px;
    font-size: 20px;
  }
}
section.trial p.trial-bottom span.under-line {
  border-bottom: 1px solid #BA775B;
}

section.nayami {
  background: #F6EEE4;
  position: relative;
}
section.nayami:after {
  position: absolute;
  content: "";
  border: 80px solid transparent;
  border-top: 50px solid #BA775B;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width:540px) {
  section.nayami:after {
    border: 60px solid transparent;
    border-top: 40px solid #BA775B;
    bottom: -80px;
  }
}
section.nayami h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width:540px) {
  section.nayami h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
section.nayami h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #624524;
  transform: rotate(65deg);
}
@media screen and (max-width:540px) {
  section.nayami h2::before {
    left: -20%;
  }
}
section.nayami h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #624524;
  transform: rotate(-65deg);
}
@media screen and (max-width:540px) {
  section.nayami h2::after {
    right: -20%;
  }
}
section.nayami .nayami-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width:768px) {
  section.nayami .nayami-wrapper {
    gap: 20px;
  }
}
section.nayami .nayami-wrapper .nayami-item {
  width: calc(25% - 30px);
}
@media screen and (max-width:768px) {
  section.nayami .nayami-wrapper .nayami-item {
    width: calc(50% - 10px);
  }
}
section.nayami .nayami-wrapper .nayami-item p {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width:540px) {
  section.nayami .nayami-wrapper .nayami-item p {
    font-size: 14px;
  }
}
section.nayami .nayami-bottom {
  margin-top: 60px;
}
@media screen and (max-width:540px) {
  section.nayami .nayami-bottom {
    margin-top: 40px;
  }
}
section.nayami .nayami-bottom p {
  font-size: 40px;
  line-height: 1.7;
  color: #BA775B;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width:540px) {
  section.nayami .nayami-bottom p {
    font-size: 25px;
  }
}
section.nayami .nayami-bottom p span.half-marker {
  background: linear-gradient(transparent 60%, #FFF9F2 50%);
  padding-bottom: -2px;
  font-weight: bold;
}

section.plan img.title-back {
  max-width: 180px;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.plan img.title-back {
    max-width: 120px;
  }
}
section.plan .plan-wrapper {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper {
    max-width: 100%;
  }
}
section.plan .plan-wrapper .plan-item {
  background: #F8F5F0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding-bottom: 80px;
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item {
    margin-top: 60px;
  }
  section.plan .plan-wrapper .plan-item:first-of-type {
    margin-top: 40px;
  }
}
section.plan .plan-wrapper .plan-item-ballon {
  background: #BA775B;
  padding: 20px 0;
  position: relative;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-ballon {
    padding: 15px 0;
  }
}
section.plan .plan-wrapper .plan-item-ballon::after {
  position: absolute;
  content: "";
  border: 15px solid transparent;
  border-top: 20px solid #BA775B;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-ballon::after {
    border: 10px solid transparent;
    border-top: 15px solid #BA775B;
  }
}
section.plan .plan-wrapper .plan-item-ballon p {
  font-size: 30px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-ballon p {
    font-size: 20px;
  }
}
section.plan .plan-wrapper .plan-item-top {
  padding: 0 30px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width:768px) {
  section.plan .plan-wrapper .plan-item-top {
    padding: 0 20px;
    display: block;
  }
}
section.plan .plan-wrapper .plan-item-top-left img {
  width: 200px;
}
@media screen and (max-width:768px) {
  section.plan .plan-wrapper .plan-item-top-left img {
    margin: 0 auto;
  }
}
section.plan .plan-wrapper .plan-item-top-right {
  margin-top: 50px;
}
@media screen and (max-width:768px) {
  section.plan .plan-wrapper .plan-item-top-right {
    margin-top: 10px;
  }
}
section.plan .plan-wrapper .plan-item-top-right-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width:1200px) {
  section.plan .plan-wrapper .plan-item-top-right-flex {
    display: block;
  }
}
section.plan .plan-wrapper .plan-item-top-right-flex h3 {
  font-size: 40px;
  text-align: left;
}
@media screen and (max-width:768px) {
  section.plan .plan-wrapper .plan-item-top-right-flex h3 {
    font-size: 28px;
    text-align: center;
  }
}
section.plan .plan-wrapper .plan-item-top-right-flex img {
  max-width: 240px;
  margin-top: 20px;
}
@media screen and (max-width:768px) {
  section.plan .plan-wrapper .plan-item-top-right-flex img {
    margin: 20px auto 0;
    width: 200px;
  }
}
section.plan .plan-wrapper .plan-item-top-right p {
  font-size: 16px;
  margin-top: 20px;
}
@media screen and (max-width:1200px) {
  section.plan .plan-wrapper .plan-item-top-right p {
    font-size: 14px;
  }
}
section.plan .plan-wrapper .plan-item-bottom {
  margin-top: 50px;
  padding: 0 30px;
}
@media screen and (max-width:1200px) {
  section.plan .plan-wrapper .plan-item-bottom {
    margin-top: 30px;
    padding: 0 20px;
  }
}
section.plan .plan-wrapper .plan-item-bottom .plan-content {
  background: #fff;
  padding: 40px 30px;
  margin-top: 20px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .plan-content {
    padding: 25px 10px;
  }
}
section.plan .plan-wrapper .plan-item-bottom .plan-content h4 {
  font-size: 25px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .plan-content h4 {
    font-size: 18px;
  }
}
section.plan .plan-wrapper .plan-item-bottom .plan-content h4::before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 50px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B19526;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .plan-content h4::before {
    width: 35px;
    height: 3px;
  }
}
section.plan .plan-wrapper .plan-item-bottom .shorei {
  max-width: 600px;
  margin: 50px auto 0 auto;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .shorei {
    margin: 30px auto 0 auto;
  }
}
section.plan .plan-wrapper .plan-item-bottom .shorei p.caption {
  font-size: 14px;
  text-align: right;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .shorei p.caption {
    font-size: 10px;
  }
}
section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info {
  margin-top: 10px;
}
section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p {
    font-size: 12px;
    margin-top: 5px;
  }
}
section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p span {
  color: #BA775B;
  font-weight: 700;
}
section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p.row5 {
  padding-left: 5em;
  text-indent: -5em;
}
section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p.row6 {
  padding-left: 6em;
  text-indent: -6em;
}
section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p.row8 {
  padding-left: 8em;
  text-indent: -8em;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .shorei .shorei-info p.row8 {
    padding-left: 0;
    text-indent: 0;
  }
}
section.plan .plan-wrapper .plan-item-bottom .banner {
  max-width: 800px;
  margin: 50px auto;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .banner {
    margin: 30px auto;
  }
}
section.plan .plan-wrapper .plan-item-bottom .banner a:hover {
  opacity: 0.8;
}
section.plan .plan-wrapper .plan-item-bottom .banner a img {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
}
section.plan .plan-wrapper .plan-item-bottom .cta-area {
  margin-top: 50px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper .plan-item-bottom .cta-area {
    margin-top: 30px;
  }
}
section.plan .plan-wrapper .plan-item .aco-btn {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
}
section.plan .plan-wrapper .plan-item .aco-btn img {
  width: 70px;
  margin: 0 auto;
}
section.plan .plan-wrapper .plan-item .close {
  transform: rotate(180deg);
  transition: all 0.5s;
  transform-origin: 18px 35px;
}
section.plan .plan-wrapper #stella .plan-item-top-left img, section.plan .plan-wrapper #pico .plan-item-top-left img, section.plan .plan-wrapper #visia .plan-item-top-left img {
  margin-top: 40px;
}
section.plan .plan-wrapper #stella .plan-item-ballon, section.plan .plan-wrapper #visia .plan-item-ballon {
  background: #C1834E;
}
section.plan .plan-wrapper #stella .plan-item-ballon::after, section.plan .plan-wrapper #visia .plan-item-ballon::after {
  border-top: 20px solid #C1834E;
}
section.plan .plan-wrapper #stella .plan-content img, section.plan .plan-wrapper #pico .plan-content img {
  max-width: 500px;
  margin: 0 auto;
}
section.plan .plan-wrapper #stella .plan-content:nth-of-type(2) {
  position: relative;
}
section.plan .plan-wrapper #stella .plan-content:nth-of-type(2)::before {
  content: "";
  background: url(../img/stella-filter-icon.svg) top left/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 87px;
  height: 87px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content:nth-of-type(2)::before {
    width: 58px;
    height: 58px;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
section.plan .plan-wrapper #stella .plan-content .filter-item-top img {
  width: 140px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content .filter-item-top {
    flex-direction: column;
    gap: 10px;
  }
  section.plan .plan-wrapper #stella .plan-content .filter-item-top p {
    order: 3;
  }
  section.plan .plan-wrapper #stella .plan-content .filter-item-top img {
    order: -1;
    width: 100px;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom {
  margin-top: 30px;
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom h5 {
  font-size: 20px;
  color: #B19526;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content .filter-item-bottom h5 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom h5::before {
  content: "";
  background-color: #B19526;
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  top: 0;
  bottom: 0;
  margin: auto;
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom h5 span {
  position: relative;
  display: inline-block;
  background: #fff;
  margin-left: 0px;
  padding: 0 20px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content .filter-item-bottom h5 span {
    padding: 0 10px;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach {
  background: #FCFAF2;
  padding: 20px 30px;
  margin-top: 10px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach {
    padding: 20px;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach h6 {
  color: #B19526;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach h6 {
    font-size: 14px;
    padding-left: 15px;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach h6::before {
  position: absolute;
  content: "";
  border: 8px solid transparent;
  border-left: 15px solid #B19526;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach h6::before {
    border: 6px solid transparent;
    border-left: 10px solid #B19526;
    top: 4px;
    transform: none;
  }
}
section.plan .plan-wrapper #stella .plan-content .filter-item-bottom .approach p {
  font-size: 13px;
}
section.plan .plan-wrapper #visia {
  padding-bottom: 60px;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #visia {
    padding-bottom: 40px;
  }
}
section.plan .plan-wrapper #visia .plan-item-top-right-flex {
  align-items: flex-start;
}
section.plan .plan-wrapper #visia p.caption {
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width:540px) {
  section.plan .plan-wrapper #visia p.caption {
    font-size: 10px;
  }
}

section.guide {
  /* ボタンの色など変更 */
}
section.guide img.title-back {
  max-width: 312px;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.guide img.title-back {
    max-width: 127px;
  }
}
section.guide h2 {
  line-height: 1.5;
}
section.guide h2 .small {
  font-size: 70%;
  margin-bottom: -40px;
  line-height: 1.7;
}
@media screen and (max-width:540px) {
  section.guide h2 .small {
    margin-bottom: -25px;
  }
}
section.guide h2 .small span.under-line {
  border-bottom: 0.5px solid #D0BEA8;
  padding-bottom: 5px;
}
@media screen and (max-width:540px) {
  section.guide h2 .small span.under-line {
    padding-bottom: 1px;
  }
}
section.guide .swiper-group {
  position: relative;
  width: 80%;
  margin: 60px auto 0 auto;
}
@media screen and (max-width:540px) {
  section.guide .swiper-group {
    width: 100%;
    margin: 40px auto 0 auto;
  }
}
section.guide .swiper-group .swiper {
  width: 82%;
  position: static;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.guide .swiper-group .swiper {
    width: 92%;
  }
}
section.guide .swiper-group .swiper .swiper-wrapper {
  align-items: center;
}
section.guide .swiper-group .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.guide .swiper-group .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: 0.5s;
}
section.guide .swiper-button-prev, section.guide .swiper-button-next {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  background: #B19526;
}
@media screen and (max-width:540px) {
  section.guide .swiper-button-prev, section.guide .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
section.guide .swiper-button-prev {
  left: 0px;
}
@media screen and (max-width:540px) {
  section.guide .swiper-button-prev {
    left: 0px;
  }
}
section.guide .swiper-button-next {
  right: 0px;
}
@media screen and (max-width:540px) {
  section.guide .swiper-button-next {
    right: 0px;
  }
}
section.guide .swiper-button-prev::after, section.guide .swiper-button-next::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
section.guide .swiper-button-prev::after {
  border-width: 12px 16px 12px 0;
  border-color: transparent #fff transparent transparent;
  left: 15px;
}
@media screen and (max-width:540px) {
  section.guide .swiper-button-prev::after {
    border-width: 9px 11px 9px 0;
    border-color: transparent #fff transparent transparent;
    left: 8px;
  }
}
section.guide .swiper-button-next::after {
  border-width: 12px 0 12px 16px;
  border-color: transparent transparent transparent #fff;
  right: 15px;
}
@media screen and (max-width:540px) {
  section.guide .swiper-button-next::after {
    border-width: 9px 0 9px 11px;
    border-color: transparent transparent transparent #fff;
    right: 8px;
  }
}

section.message {
  background: url(../img/message-bg.jpg) top center/cover no-repeat;
}
section.message .message-wrapper {
  background: url(../img/frame-tl.svg) top 10px left 10px/100px no-repeat, url(../img/frame-tr.svg) top 10px right 10px/100px no-repeat, url(../img/frame-bl.svg) bottom 10px left 10px/100px no-repeat, url(../img/frame-br.svg) bottom 10px right 10px/100px no-repeat, rgba(255, 255, 255, 0.8);
  padding: 60px 15px;
}
section.message .message-wrapper .message-title p {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
@media screen and (max-width:540px) {
  section.message .message-wrapper .message-title p {
    font-size: 16px;
  }
}
section.message .message-wrapper .message-title p::before {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 50px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #B19526;
}
@media screen and (max-width:540px) {
  section.message .message-wrapper .message-title p::before {
    width: 35px;
    height: 3px;
  }
}
section.message .message-wrapper .message-title h2 {
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width:540px) {
  section.message .message-wrapper .message-title h2 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
section.message .message-wrapper .message-text p {
  max-width: 650px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  section.message .message-wrapper .message-text p {
    max-width: 90%;
  }
}
section.message .cta-area {
  margin-top: 50px;
}
@media screen and (max-width:540px) {
  section.message .cta-area {
    margin-top: 30px;
  }
}

section.staff {
  background: url(../img/staff-bg.jpg) top center/cover no-repeat;
}
section.staff img.title-back {
  max-width: 242px;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.staff img.title-back {
    max-width: 127px;
  }
}
section.staff h2 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 40px;
  margin-top: -25px;
}
@media screen and (max-width:540px) {
  section.staff h2 {
    font-size: 30px;
    margin-top: -5px;
  }
}
section.staff h2 span.small {
  font-size: 30px;
}
@media screen and (max-width:540px) {
  section.staff h2 span.small {
    font-size: 18px;
  }
}
section.staff .staff-wrapper {
  background: #fff;
  padding: 60px 15px;
  margin-top: 60px;
}
@media screen and (max-width:540px) {
  section.staff .staff-wrapper {
    padding: 20px 15px;
    margin-top: 40px;
  }
}
section.staff .staff-wrapper .staff-item {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 0.5px solid #8D775E;
  padding: 30px 0;
}
@media screen and (max-width:540px) {
  section.staff .staff-wrapper .staff-item {
    flex-direction: column;
    gap: 10px;
  }
}
section.staff .staff-wrapper .staff-item:last-of-type {
  border: none;
}
section.staff .staff-wrapper .staff-item-left img {
  width: 200px;
}
@media screen and (max-width:540px) {
  section.staff .staff-wrapper .staff-item-left img {
    max-width: 140px;
  }
}
section.staff .staff-wrapper .staff-item-right p.name {
  font-size: 25px;
  font-weight: 700;
  color: #8D775E;
}
@media screen and (max-width:540px) {
  section.staff .staff-wrapper .staff-item-right p.name {
    font-size: 18px;
    text-align: center;
  }
}
section.staff .staff-wrapper .staff-item-right p.message {
  font-size: 16px;
  margin-top: 20px;
}
@media screen and (max-width:540px) {
  section.staff .staff-wrapper .staff-item-right p.message {
    font-size: 14px;
    margin-top: 10px;
  }
}

section.flow {
  background: #FCF9F5;
}
section.flow img.title-back {
  max-width: 260px;
  margin: 0 auto;
}
@media screen and (max-width:540px) {
  section.flow img.title-back {
    max-width: 130px;
  }
}
section.flow h2 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 60px;
  margin-top: 5px;
}
@media screen and (max-width:540px) {
  section.flow h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
section.flow p.flow-copy {
  font-size: 30px;
  color: #BA775B;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width:540px) {
  section.flow p.flow-copy {
    font-size: 20px;
  }
}
section.flow p.flow-copy span {
  border-bottom: 1px solid #BA775B;
}
section.flow .flow-wrapper {
  margin-top: 60px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper {
    margin-top: 40px;
  }
}
section.flow .flow-wrapper .flow-item {
  margin-top: 40px;
  padding-bottom: 40px;
  position: relative;
  border-bottom: 1px solid #D0BEA8;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item {
    margin-top: 30px;
    padding-bottom: 30px;
  }
}
section.flow .flow-wrapper .flow-item::after {
  position: absolute;
  content: "";
  border: 30px solid transparent;
  border-top: 25px solid #918174;
  top: 96%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item::after {
    border: 25px solid transparent;
    border-top: 20px solid #918174;
    top: 98%;
  }
}
section.flow .flow-wrapper .flow-item:last-of-type {
  border-bottom: none;
}
section.flow .flow-wrapper .flow-item:last-of-type::after {
  content: none;
}
section.flow .flow-wrapper .flow-item h3 {
  text-align: left;
  font-size: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item h3 {
    text-align: center;
    font-size: 20px;
  }
}
section.flow .flow-wrapper .flow-item h3 span.step-no {
  font-size: 25px;
  color: #fff;
  background: #918174;
  padding: 5px 15px;
  border-radius: 100px;
  margin-right: 10px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item h3 span.step-no {
    font-size: 16px;
    padding: 3px 10px;
    display: block;
    width: 90px;
    margin: 0 auto 6px;
  }
}
section.flow .flow-wrapper .flow-item h3 span.caption {
  font-size: 16px;
  margin-left: 20px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item h3 span.caption {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 10px;
  }
}
section.flow .flow-wrapper .flow-item .flow-item-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item .flow-item-content {
    display: block;
    gap: 0;
  }
}
section.flow .flow-wrapper .flow-item .flow-item-content img {
  max-width: 300px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item .flow-item-content img {
    max-width: 260px;
    margin: 0 auto;
  }
}
section.flow .flow-wrapper .flow-item .flow-item-content p {
  margin-top: 20px;
}
@media screen and (max-width:540px) {
  section.flow .flow-wrapper .flow-item .flow-item-content p {
    width: 85%;
    margin: 20px auto 0;
  }
}
section.flow .cta-area {
  margin-top: 60px;
}
@media screen and (max-width:540px) {
  section.flow .cta-area {
    margin-top: 40px;
  }
}/*# sourceMappingURL=style.css.map */