@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: Verdana, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  height: 100%;
  color: rgba(0, 0, 0, 0.9);
}

body {
  background: #fffaec;
  font-size: 1.6rem;
  line-height: 2.2rem;
}

main {
  /* ヘッダーを最下部に表示するための指定 */
  flex: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: #e67300;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 480px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
h1 {
  font-size: 2.6rem;
  line-height: 2.8rem;
  font-weight: bold;
  margin-bottom: 16px;
}
h1 .sub {
  font-size: 1.8rem;
  font-weight: normal;
  padding-left: 2px;
  margin-bottom: 4px;
}
@media screen and (min-width: 480px) {
  h1 .sub {
    /*      font-size: 2.1rem;*/
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 480px) {
  h1 {
    font-size: 3rem;
  }
}

h1 a {
  text-decoration: none;
  color: inherit;
}

h1 a:hover {
  text-decoration: none;
}

h2 {
  font-size: 2.2rem;
  line-height: 2.6rem;
  font-weight: bold;
  margin: 52px 0 20px 0;
}
h2::before {
  display: inline-block;
  background-color: #e67300;
  width: 8px;
  line-height: 2.2rem;
  border-radius: 4px;
  margin-right: 8px;
  content: " ";
  /* スペース(Unicode) */
}

h3 {
  margin-bottom: 5px;
  display: inline-flex;
  align-items: center;
}
h3::before {
  display: inline-block;
  background: url(../img/bullet_s.png) no-repeat;
  margin-right: 8px;
  width: 12px;
  height: 16px;
  content: " ";
  vertical-align: middle;
}

p {
  margin-bottom: 24px;
}

section {
  margin-bottom: 48px;
}

strong {
  font-weight: bold;
}

.not-mobile {
  display: none;
}
@media screen and (min-width: 480px) {
  .not-mobile {
    display: block;
  }
}

.sub-text {
  color: rgba(0, 0, 0, 0.6);
}

.thumbnail {
  width: 200px;
  margin-top: 16px;
  margin-right: 8px;
}

.container {
  background: #fff;
  width: 100%;
  padding: 15px 15px 0 15px;
  /* ヘッダーを最下部に表示するための指定 */
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}
@media screen and (min-width: 960px) {
  .container {
    width: 960px;
    padding: 30px 30px 0 30px;
    margin: 0 auto;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  }
}

/* 単語の途中での改行を回避 */
.no-wrap {
  display: inline-block;
}

.button {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  background-color: #e67300;
  padding: 0px 20px;
  border: none;
  border-radius: 10px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  outline: none;
  appearance: none;
}
.button:hover {
  opacity: 0.8;
}

.header {
  display: flex;
  justify-content: space-between;
}

.contact-info-top {
  display: flex;
  flex-direction: column;
  text-align: right;
  margin-bottom: 10px;
  gap: 16px;
  float: right;
}

.third-party-links {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: flex-end;
}

.line-link img {
  height: 36px;
  border: 0;
}

.hotpepper-link img {
  height: 36px;
}

.navigation {
  background-color: #fafafa;
  margin: 0px -15px 0px -15px;
  padding: 8px 15px;
  border-top: 0.5px solid #efefef;
  border-bottom: 0.5px solid #efefef;
}
@media screen and (min-width: 480px) {
  .navigation {
    margin: 0px -30px 0px -30px;
    padding: 8px 30px;
  }
}
.navigation li {
  display: inline-block;
  padding: 0px 8px 0px 8px;
  margin: 4px 0;
  border-right: 1px solid #999;
  line-height: 2rem;
}
.navigation li:nth-last-child(2) {
  border-right: none;
}
.navigation li:last-child {
  border-right: none;
}
@media screen and (min-width: 480px) {
  .navigation li:last-child {
    float: right;
  }
}
.navigation .active {
  color: rgba(0, 0, 0, 0.9);
}

.intro {
  background-color: #ffe09d;
  background-image: url(../img/wave.png);
  background-size: 500px 200px;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 16px 15px 30px 15px;
  margin-right: -15px;
  margin-left: -15px;
}
@media screen and (min-width: 480px) {
  .intro {
    padding: 16px 30px 30px 30px;
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media screen and (min-width: 540px) {
  .intro {
    display: table;
    background-size: 100% 200px;
  }
}
.intro__image {
  display: block;
}
@media screen and (min-width: 540px) {
  .intro__image {
    display: table-cell;
  }
}
.intro img {
  border-radius: 30px 30px 0 0;
  width: 100%;
  vertical-align: top;
  height: 300px;
  object-fit: cover;
}
@media screen and (min-width: 540px) {
  .intro img {
    border-radius: 30px 0 0 30px;
    object-fit: cover;
  }
}
.intro__message {
  vertical-align: top;
  width: calc(100% - 30px);
  background: #fff;
  opacity: 0.8;
  padding: 20px 20px 10px 20px;
  border-radius: 0 0 30px 30px;
  border-color: #ccc;
  border-style: solid;
}
@media screen and (min-width: 540px) {
  .intro__message {
    display: table-cell;
    width: 60%;
    border-radius: 0 30px 30px 0;
  }
}
.intro__heading {
  color: #e67300;
  font-size: 2.2rem;
  line-height: 2.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile {
  display: flex;
  flex-wrap: wrap;
}
.profile__photo {
  display: block;
  width: 50%;
  height: 50%;
  max-width: 215px;
  margin-bottom: 24px;
  margin-right: 10px;
}
.profile__info-item {
  margin-bottom: 24px;
}
.profile__message {
  padding: 18px;
  background-color: #f9ede3;
  border-radius: 10px;
  position: relative;
  margin-top: 16px;
}
@media screen and (min-width: 480px) {
  .profile__message:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 20%;
    transform: rotate(-15deg);
    border: 8px solid transparent;
    border-bottom: 32px solid #f9ede3;
  }
}

.feature {
  margin-bottom: 36px;
}
.feature__title {
  display: block;
  color: #fff;
  background-color: #e67300;
  padding: 0 0.5rem;
  font-size: 1.6rem;
  border-radius: 15px;
  line-height: 30px;
  text-align: center;
  width: 120px;
}
.feature__item {
  display: block;
  margin-top: 12px;
  margin-bottom: 12px;
  font-weight: bold;
}

.symptoms-list {
  background-color: #f9ede3;
  padding: 10px;
  font-size: 1.6rem;
}
.symptoms-list__title {
  font-weight: bold;
  margin-bottom: 16px;
}
.symptoms-list li {
  display: inline-block;
  margin-right: 10px;
}
.symptoms-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #000;
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 5px;
}

/* ご利用の流れ */
.flow-steps {
  /* 最後のステップは▼がなく余白が空きすぎるので詰める */
}
@media screen and (min-width: 480px) {
  .flow-steps .flow-step:last-child {
    margin-bottom: -40px;
  }
}

.flow-step {
  margin-top: 20px;
}
@media screen and (min-width: 480px) {
  .flow-step {
    margin-top: 0px;
  }
}
.flow-step__title {
  display: block;
  color: #fff;
  background-color: #e67300;
  font-size: 1.4rem;
  margin-bottom: 10px;
  width: 130px;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .flow-step__title {
    display: inline-block;
    margin-bottom: 0px;
    vertical-align: top;
  }
}
.flow-step__arrow {
  display: block;
  /* センタリング */
  margin: auto;
  width: 16px;
  /* 画像の幅 */
  margin-top: 10px;
  /* ▼の上にマージン */
}
@media screen and (min-width: 480px) {
  .flow-step__arrow {
    position: absolute;
    top: calc(50% + 1.2rem);
    left: -65px;
    transform: translateY(-50%) translateX(-50%);
  }
}
.flow-step__body {
  display: block;
  margin-bottom: 10px;
  /* ▼の上のマージンの値と合わせて▼を縦方向にセンタリング */
}
@media (min-width: 480px) {
  .flow-step__body {
    position: relative;
    display: inline-block;
    width: calc(100% - 130px - 30px);
    padding-left: 5px;
    min-height: 75px;
  }
}

/* voice of clients */
.voice-item {
  display: flex;
  margin-bottom: 18px;
}
.voice-item__image {
  width: 88px;
  height: 88px;
}
@media screen and (min-width: 480px) {
  .voice-item__image {
    width: 110px;
    height: 110px;
  }
}
.voice-item__body {
  padding-left: 14px;
}
.voice-item__profile {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 10px;
}
hr {
  background-color: #ccc;
  border: none;
  height: 1px;
  margin-bottom: 14px;
}

#map {
  width: calc(100% - 30px);
  height: 300px;
  margin-bottom: 12px;
}
@media screen and (min-width: 730px) {
  #map {
    width: 700px;
    height: 400px;
  }
}

footer {
  background-color: #f9ede3;
  margin: 0px -15px 0px -15px;
  padding: 22px 15px 10px 15px;
}
@media screen and (min-width: 480px) {
  footer {
    margin: 0px -30px 0px -30px;
    padding: 22px 30px 10px 30px;
  }
}

.contact-info {
  margin-bottom: 40px;
}
.contact-info__title {
  font-weight: bold;
  margin-bottom: 16px;
}
.contact-info__phone-icon {
  color: #e67300;
  font-size: 2.4rem;
  line-height: 3.6rem;
}
.contact-info__phone-number {
  font-size: 3.6rem;
  line-height: 3.6rem;
}
.contact-info__reception-time {
  margin-bottom: 16px;
}
.contact-info__links {
  display: flex;
  column-gap: 64px;
  row-gap: 32px;
  flex-wrap: wrap;
}

.copyright {
  text-align: center;
  font-size: 1.4rem;
}

#goto-top-button {
  background-color: #e67300;
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  padding: 8px;
  opacity: 0;
}
#goto-top-button img {
  width: 60%;
  height: 60%;
}
#goto-top-button a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-align: center;
}
#goto-top-button:hover {
  opacity: 0.85;
}
#goto-top-button.fade-in {
  opacity: 0.85;
  transition: opacity 1s;
}

.contact-msg {
  margin: 24px 0px;
}

.contact-tel-wrapper {
  /*  text-align: center;*/
  /*margin: 48px 0px;*/
  margin-top: 24px;
}

.contact-tel {
  display: inline-block;
}
.contact-tel__phone-icon {
  color: #e67300;
  font-size: 2.4rem;
  line-height: 3.6rem;
}
.contact-tel__phone-number {
  color: #e67300;
  font-size: 3.6rem;
  line-height: 3.6rem;
}
.contact-tel__reception-time {
  margin-bottom: 16px;
}

.contact-form {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width: 960px) {
  .contact-form-item {
    display: flex;
  }
}
.contact-form-item__header {
  display: block;
  background-color: #f9ede3;
  width: 100%;
  padding: 5px 12px;
  height: auto;
}
@media screen and (min-width: 960px) {
  .contact-form-item__header {
    display: inline-block;
    width: 250px;
    vertical-align: top;
    /*      margin-bottom: 10px;*/
  }
}
.contact-form-item__header-title {
  font-weight: bold;
  float: left;
}
.contact-form-item__conditional {
  text-align: right;
  font-size: 1.2rem;
  color: #fff;
}
.contact-form-item__mandatory {
  display: inline-block;
  background-color: #e94040;
  padding: 2px 5px;
}
.contact-form-item__optional {
  display: inline-block;
  background-color: #999;
  padding: 2px 5px;
}
.contact-form-item__content {
  width: 100%;
  padding: 12px 0px 22px 0px;
}
.contact-form-item__content textarea {
  height: 240px;
}
@media screen and (min-width: 960px) {
  .contact-form-item__content {
    display: inline-block;
    width: calc(100% - 300px);
    vertical-align: top;
    padding-top: 5px;
    padding-left: 15px;
    padding-bottom: 0;
  }
  .contact-form-item__content textarea {
    margin-top: -5px;
    /* textareaと項目名の表示(contact-form-item__header)を上揃えするため */
  }
}

.contact-form__send-button {
  margin-top: 10px;
}

.contact-thankyou {
  margin: 48px 64px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .contact-thankyou {
    margin: 48px 0px;
  }
}

.contact-error {
  margin: 48px 0px;
  font-size: 1.8rem;
  text-align: center;
}

.fa {
  width: 1em;
  height: 1em;
  margin: 0 0;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.fa-flip-horizontal {
  transform: scale(-1, 1);
}

/* ----------------------------------- */
/* Radio Button */
/* ----------------------------------- */
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 18px;
  width: 18px;
  vertical-align: -0.8rem;
  transition: all 0.15s ease-out 0s;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 0.4rem;
  outline: none;
  border-radius: 10%;
}

/* Radio */
input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:checked:before {
  transform: scale(1);
}

input[type=radio]:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 3px;
  transform: scale(0);
  transition: all ease-out 250ms;
}

input[type=radio].primary {
  border: 1px solid #666;
}

input[type=checkbox].primary:indeterminate,
input[type=radio].primary:checked:before {
  background: #e67300;
}

/* テキストボックス関連 */
input[type=text],
input[type=email],
input[type=tel] {
  padding: 5px 5px;
  /* ボックスを大きくする */
  border-radius: 3px;
  border: 1px solid #666;
}

/* テキストエリア */
textarea {
  width: 100%;
  padding: 5px 5px;
  /* ボックスを大きくする */
  border-radius: 3px;
  border: 1px solid #666;
  resize: vertical;
}

.business-hours-table {
  margin-bottom: 16px;
}
.business-hours-table__day-of-week {
  width: 64px;
}
.business-hours-table td {
  border-collapse: collapse;
  border: 1px #e67300 solid;
  padding: 8px;
  text-align: center;
  vertical-align: middle;
}

/* Introduction Section - Text & Image Layout */
.introduction-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.introduction-image img {
  width: 100%;
  max-width: 450px; /* Restrict max size */
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .introduction-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }
  .introduction-text {
    flex: 1;
  }
  .introduction-image {
    flex: 0 0 420px; /* Wider container for PC */
    padding-left: 20px;
  }
}
/* Style for Saturday special time display in table */
.saturday-time {
  font-size: 1.2rem; /* Make it smaller to fit */
  white-space: nowrap;
}

/* Menu Gallery Grid Layout */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Default to 2 columns for mobile */
  gap: 10px;
  margin-top: 24px;
}

.menu-gallery img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4/3; /* Enforce consistent shape */
}

@media screen and (min-width: 480px) {
  /* Switch to 4 columns on larger screens to achieve 4 columns x 2 rows */
  .menu-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  max-width: 450px; /* Increased width */
  aspect-ratio: 4/3; /* Adjust based on image aspect ratios */
  margin: 0 auto 30px auto; /* Add bottom margin for dots */
  /* overflow: hidden; Removed to allow dots outside */
}

.carousel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: -25px; /* Move below the image */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background-color: #ccc; /* Improved visibility on white background */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
  /* box-shadow: 0 1px 2px rgba(0,0,0,0.3); Removed shadow as it's on white bg now */
}

.carousel-dot.active {
  background-color: #e67300; /* Primary color */
  /* border: 2px solid #fff; Removed border as it blends with white background */
}

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