@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  line-height: 1;
  font-weight: normal;
  font-size: 16px;
  box-sizing: border-box;
}

h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

body {
  color: #333;
  margin: 0;
}

img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

video {
  filter: drop-shadow(0px 0px #000);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  display: block;
  color: #6F655B;
}

li {
  list-style: none;
}

span {
  display: block;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #FEFBF7;
  color: #6F655B;
  margin: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3, .font-serif {
  font-family: "Noto Serif JP", serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (max-width: 768px) {
  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
}

.open {
  opacity: 1;
  transform: translateX(0);
  transition: all ease 1.5s;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  #header {
    height: 50px;
    padding: 0 20px;
  }
}
#header .hum {
  position: relative;
  width: 70px;
  height: 30px;
  z-index: 50;
  cursor: pointer;
}
#header .hum span {
  transition: all 0.3s ease;
  height: 4px;
  position: absolute;
  background-color: #6F655B;
}
#header .hum span:first-child {
  top: 0;
}
#header .hum span:nth-child(2) {
  top: 15.5px;
  opacity: 1;
}
#header .hum span:last-child {
  top: 30px;
}
#header .hum .open {
  transition: all 0.3s ease;
}
#header .hum .open:first-child {
  top: 15px;
  transform: rotate(30deg);
}
#header .hum .open:nth-child(2) {
  opacity: 0;
}
#header .hum .open:last-child {
  top: 15px;
  transform: rotate(-30deg);
}
@media (max-width: 768px) {
  #header .hum {
    width: 50px;
    height: 30px;
  }
  #header .hum span {
    height: 2px;
  }
  #header .hum span:first-child {
    top: 5px;
  }
  #header .hum span:nth-child(2) {
    top: 15.5px;
    opacity: 1;
  }
  #header .hum span:last-child {
    top: 25px;
  }
}
#header .logo {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #6F655B;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 50;
}
@media (max-width: 768px) {
  #header .logo {
    font-size: 1.2rem;
  }
}
#header .mask {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 40;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
#header .mask nav {
  max-width: 800px;
  padding: 0 20px;
  margin: 5rem auto 3rem auto;
}
#header .mask nav a {
  color: #6F655B;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
}
#header .mask nav a:hover {
  color: rgb(218.9398734177, 177.8481012658, 158.5601265823);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #header .mask nav {
    margin: 5rem auto 2rem auto;
  }
  #header .mask nav a {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}
#header .mask .cta-button {
  background-color: #D4A38C;
  color: #FFFFFF;
  padding: 1rem 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 20px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
#header .mask .cta-button:hover {
  background-color: rgb(218.9398734177, 177.8481012658, 158.5601265823);
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

p {
  line-height: 1.5;
}

#hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: 600px;
  }
}
#hero > div:first-of-type {
  background-color: #c9c3bc;
  height: 800px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #hero > div:first-of-type {
    height: 600px;
    flex-direction: column;
    background-color: transparent;
  }
}
#hero .video {
  width: 40%;
  background-color: #333;
}
#hero .video video {
  height: 800px;
}
@media (max-width: 768px) {
  #hero .video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero .video video {
    height: 600px;
    opacity: 0.5;
  }
}
#hero .hero-content {
  width: 60%;
  text-align: center;
  color: #FFFFFF;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  #hero .hero-content {
    padding: 0 2rem;
    width: 100%;
    margin-top: 150px;
  }
}
#hero h1 {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 10px;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2rem;
    letter-spacing: 5px;
  }
}
#hero .hero-subtitle {
  margin-top: 1rem;
  font-size: 1.125rem;
  letter-spacing: 2px;
  line-height: 2;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  #hero .hero-subtitle {
    font-size: 1rem;
  }
}
#hero .hero-cta {
  margin-top: 2rem;
  display: inline-block;
  background-color: #D4A38C;
  color: #FFFFFF;
  padding: 0.75rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#hero .hero-cta:hover {
  opacity: 0.9;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  #hero .hero-cta {
    font-size: 1rem;
    padding: 0.75rem 2rem;
  }
}

#news {
  background-color: #FFFFFF;
  text-align: center;
}
#news .news-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#news .news-item {
  display: block;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #FEFBF7;
  text-align: left;
  transition: background-color 0.2s ease;
}
#news .news-item:hover {
  background-color: #EAE3DC;
}
#news .news-item .date {
  font-size: 0.875rem;
  color: #BDBDBD;
  letter-spacing: 2px;
}
#news .news-item .title {
  font-weight: 600;
  margin-top: 0.5rem;
}

#problems {
  background-color: #FFFFFF;
  text-align: center;
}
#problems .subtitle {
  max-width: 48rem;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  #problems .subtitle {
    font-size: 1rem;
  }
}
#problems h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #problems h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
#problems .concerns-chart {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 8rem auto;
}
#problems .bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
#problems .bar-label {
  width: 200px;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #problems .bar-label {
    font-size: 0.8rem;
    width: 120px;
  }
}
#problems .bar-bg {
  flex-grow: 1;
  background-color: #EAE3DC;
  height: 40px;
  border-radius: 9999px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #problems .bar-bg {
    height: 30px;
  }
}
#problems .bar {
  background-color: #D4A38C;
  height: 100%;
  transition: width 1s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #FFFFFF;
  font-weight: bold;
  padding-right: 0.75rem;
  box-sizing: border-box;
  white-space: nowrap;
  transform: translateX(-100%);
}
#problems .bar span {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  #problems .bar span {
    font-size: 0.8rem;
  }
}
#problems .bar-open {
  transform: translateX(0);
  transition: all ease 3s;
}
#problems .benefits {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  #problems .benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
#problems .benefit-item {
  background-color: #FEFBF7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
}
#problems .benefit-item h4 {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
#problems .benefit-item p {
  line-height: 1.5;
}

#reasons .tabs-container {
  max-width: 64rem;
  margin: 0 auto;
}
#reasons .tab-buttons {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #D4A38C;
}
#reasons .tab-button {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  color: #6F655B;
}
#reasons .tab-button.tab-active {
  border-color: #D4A38C;
  background-color: #EAE3DC;
}
@media (max-width: 768px) {
  #reasons .tab-button {
    font-size: 0.8rem;
    padding: 0.7rem;
  }
}
#reasons .tab-contents {
  text-align: left;
}
#reasons .tab-content {
  display: none;
}
#reasons .tab-content.active {
  display: block;
}
#reasons .tab-content > div {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
@media (max-width: 768px) {
  #reasons .tab-content > div {
    flex-direction: column;
  }
}
#reasons .tab-content img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  #reasons .tab-content img {
    width: 50%;
  }
}
#reasons .tab-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 1rem;
  line-height: 1.5;
}

#profile {
  background-color: #FFFFFF;
  text-align: center;
}
#profile .profile-card {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 3rem;
}
@media (min-width: 768px) {
  #profile .profile-card {
    flex-direction: row;
  }
}
#profile img {
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
  -o-object-position: top;
     object-position: top;
}
@media (min-width: 768px) {
  #profile img {
    width: 16rem;
    height: 16rem;
  }
}
#profile h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #profile h3 {
    text-align: center;
  }
}
#profile .tagline {
  font-size: 1.125rem;
  color: #D4A38C;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}
@media (max-width: 768px) {
  #profile .tagline {
    text-align: center;
    font-size: 1rem;
  }
}

#menu {
  background-color: #FFFFFF;
  text-align: center;
  padding: 4rem 0;
}
#menu .menu-category-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  #menu .menu-category-title {
    font-size: 1.25rem;
  }
}
#menu .menu-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
#menu .menu-items > div.grid-2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
}
@media (min-width: 768px) {
  #menu .menu-items > div.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#menu .menu-item {
  border: 1px solid #E5E7EB;
  border-radius: 0.5rem;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
  position: relative;
}
#menu .menu-item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
#menu .menu-item.popular {
  border: 2px solid #D4A38C;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#menu .menu-item.popular span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #D4A38C;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 5px;
}
#menu .menu-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #D4A38C;
}
#menu .menu-item .price {
  font-size: 2.25rem;
  font-weight: bold;
  margin-top: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
#menu .menu-item .duration {
  color: #BDBDBD;
  margin-bottom: 1rem;
}
#menu .menu-item .menu-course {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 1rem;
}
#menu .menu-item .menu-course li {
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 768px) {
  #menu .menu-item .menu-course li {
    font-size: 0.8rem;
  }
}
#menu .menu-note {
  margin-top: 2rem;
}

#voices {
  text-align: center;
}
#voices .voice-cards {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #voices .voice-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#voices .voice-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  height: -moz-fit-content;
  height: fit-content;
}
#voices .voice-card .text {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  #voices .voice-card .text {
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
  }
}
#voices .voice-card .author {
  font-weight: 600;
  text-align: right;
}

#before-after {
  background-color: #FFFFFF;
  text-align: center;
}
#before-after .subtitle {
  max-width: 48rem;
  margin: 0 auto 3rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #before-after .subtitle {
    font-size: 1.125rem;
  }
}
#before-after .examples {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  #before-after .examples {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
#before-after .example-item {
  background-color: #FEFBF7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#before-after .image-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}
#before-after .image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#before-after .image-container img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  #before-after .image-container img {
    height: 200px;
  }
}
#before-after .image-container span {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  #before-after .image-container span {
    font-size: 0.8rem;
  }
}
#before-after .description {
  text-align: left;
  font-size: 0.875rem;
  color: #4B5563;
}

#faq {
  background-color: #FFFFFF;
}
#faq h2 {
  text-align: center;
}
#faq .faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#faq .faq-item {
  border-bottom: 1px solid #D1D5DB;
  padding-bottom: 1rem;
}
#faq .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
}
#faq .faq-question span {
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #6F655B;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #faq .faq-question span {
    font-size: 1rem;
  }
}
#faq .faq-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
#faq .rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
#faq .faq-answer {
  display: none;
  padding-top: 0.5rem;
  color: #4B5563;
}
@media (max-width: 768px) {
  #faq .faq-answer p {
    font-size: 0.8rem;
  }
}

#booking .booking-flex {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #booking .booking-flex {
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
#booking > div:first-of-type {
  background-image: url(img/mainvisual01.jpg);
  background-repeat: no-repeat;
  background-position: cover;
  padding: 4rem 0;
  text-align: center;
}
@media (max-width: 768px) {
  #booking > div:first-of-type {
    background-image: none;
    background-color: #FFFFFF;
  }
}
@media (min-width: 768px) {
  #booking h2 {
    font-size: 2.25rem;
  }
}
#booking .form-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #booking .form-title {
    font-size: 1rem;
  }
}
#booking .subtitle {
  max-width: 48rem;
  margin: 0 auto 3rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #booking .subtitle {
    font-size: 1.125rem;
  }
}
#booking .booking-left {
  background-color: #FEFBF7;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #booking .booking-left {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
#booking .line-button {
  background-color: #06C755;
  border-radius: 9999px;
  color: #FFFFFF;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
#booking .line-button:hover {
  transition: all 0.3s ease;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  #booking .line-button {
    font-size: 0.8rem;
  }
}
#booking .hotpepper-button {
  background-color: #8F3356;
  border-radius: 9999px;
  color: #FFFFFF;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: all 0.3s ease;
}
#booking .hotpepper-button:hover {
  transition: all 0.3s ease;
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  #booking .hotpepper-button {
    font-size: 0.8rem;
  }
}
#booking .booking-right {
  background-color: #FEFBF7;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  #booking .booking-right {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
#booking .phone-text {
  color: #4B5563;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  #booking .phone-text {
    font-size: 1rem;
  }
}
#booking .phone-number {
  font-weight: bold;
  margin-top: 0.5rem;
  font-family: sans-serif;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #D4A38C;
}
@media (max-width: 768px) {
  #booking .phone-number {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}

footer {
  background-color: #EAE3DC;
  color: #6F655B;
  padding: 3rem 0 1rem 0;
}
footer .container {
  text-align: center;
}
@media (min-width: 768px) {
  footer .container {
    text-align: left;
  }
}
footer .grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  footer .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
footer h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
footer .footer-logo {
  width: 80%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  footer .footer-logo {
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
footer h4 {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  margin-bottom: 0.5rem;
}
footer li a {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto 0 0 0;
}
@media (max-width: 768px) {
  footer li a {
    margin: 0 auto;
  }
}
footer a:hover {
  text-decoration: underline;
}
footer .salon-info p {
  text-align: left;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  footer .salon-info p {
    width: 230px;
    margin: 0 auto;
  }
}
footer .copyright {
  margin-top: 2rem;
  border-top: 1px solid rgb(225.8797468354, 192.6962025316, 177.1202531646);
  padding-top: 1rem;
  text-align: center;
}
footer .copyright p {
  font-size: 0.8rem;
}

/* Contact Form 7 用カスタムスタイル */
/* ================================ */
/* 全体のコンテナ */
.wpcf7 {
  max-width: 100%;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #6F655B;
}

/* フォーム要素のコンテナ */
.wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.5rem;
  margin-top: 0.8rem;
}

/* ラベルのスタイル */
.wpcf7-form label {
  display: block;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500;
  color: #6F655B;
  margin-bottom: 0.25rem;
}

/* 入力フィールド (input, textarea) の共通スタイル */
.wpcf7-form-control {
  width: 100%;
  padding: 0.75rem 1rem; /* py-3 px-4 */
  border: 1px solid #E5E7EB; /* border-gray-300 */
  border-radius: 0.5rem; /* rounded-md */
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.wpcf7-form-control:focus {
  outline: none;
  border-color: #D4A38C;
  box-shadow: 0 0 0 2px rgba(212, 163, 140, 0.2);
}

/* メッセージ入力欄 (textarea) */
textarea.wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}

/* 送信ボタンのスタイル */
.wpcf7-submit {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem; /* py-4 px-6 */
  background-color: #D4A38C;
  color: #ffffff;
  font-size: 1.125rem; /* text-lg */
  font-weight: 700; /* font-bold */
  border: none;
  border-radius: 9999px; /* rounded-full */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7-submit:hover {
  background-color: #c0917a; /* 暗めの色に変化 */
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.wpcf7-submit:active {
  transform: translateY(0);
  box-shadow: none;
}

/* エラーメッセージのスタイル */
.wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 0.875rem;
  color: #E74C3C;
  margin-top: 0.5rem;
}

/* 成功時のメッセージ */
.wpcf7-response-output.wpcf7-mail-sent-ok {
  color: #27AE60;
}

#news-article-section header {
  text-align: center;
  border-bottom: #BDBDBD 1px solid;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  #news-article-section header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
#news-article-section .page-single-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  #news-article-section .page-single-title {
    font-size: 1.5rem;
  }
}
#news-article-section .page-date {
  color: #BDBDBD;
}
@media (max-width: 768px) {
  #news-article-section .page-date {
    font-size: 0.8rem;
  }
}
#news-article-section article {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
#news-article-section article p {
  line-height: 2;
}
#news-article-section article h1, #news-article-section article h2, #news-article-section article h3 {
  margin: 2.5rem 0 1rem 0;
  font-size: 1.5rem;
}
#news-article-section article img {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  #news-article-section article {
    padding: 1rem;
  }
  #news-article-section article p {
    font-size: 0.8rem;
  }
  #news-article-section article h1, #news-article-section article h2, #news-article-section article h3 {
    margin: 2rem 0 0.8rem 0;
    font-size: 1.2rem;
    line-height: 1.2;
  }
  #news-article-section article img {
    margin: 0.8rem 0;
  }
}
#news-article-section .pagenation {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}
#news-article-section .pagenation a {
  width: -moz-fit-content;
  width: fit-content;
}
#news-article-section .pagenation a:hover {
  color: rgb(218.9398734177, 177.8481012658, 158.5601265823);
  transition: all 0.3s ease;
}
#news-article-section .pagenation span {
  width: -moz-fit-content;
  width: fit-content;
}
#news-article-section .pagenation span:hover {
  color: rgb(218.9398734177, 177.8481012658, 158.5601265823);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  #news-article-section .pagenation {
    margin: 2rem auto;
  }
  #news-article-section .pagenation a {
    font-size: 0.8rem;
  }
  #news-article-section .pagenation span {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */