@charset "UTF-8";

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2.1rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  font-size: 0.9rem;
}

a {
  font-size: 0.9rem;
}

@media screen and (max-width: 860px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.9rem;
  }

  a {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.7rem;
  }

  a {
    font-size: 0.8rem;
  }
}

.contact-site__header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
  padding: 10px 20px;
}

.contact-site__header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-site__header .logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.contact-site__header .logo-area .logo {
  height: 60px;
  width: auto;
}

.contact-site__header .logo-area .logo-title {
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #333;
}

.contact-site__header .logo-area:hover {
  opacity: 0.85;
}

@media (max-width: 860px) {
  .contact-site__header {
    padding: 10px;
  }

  .contact-site__header-container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}

.form-container {
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .form-container {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .form-container {
    width: 95%;
  }
}

.form-title {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin: 100px 0 20px;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
}

@media (max-width: 860px) {
  .form-title {
    font-size: 1.5rem;
    padding-top: 20px;
    margin: 80px 0 15px;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 1.2rem;
    margin: 70px 0 10px;
  }
}

.form-notice {
  padding: 40px 30px;
}

@media (max-width: 860px) {
  .form-notice {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .form-notice {
    padding: 20px 15px;
  }
}

.form-notice-info {
  border: 2px solid #4a90e2;
  border-radius: 15px;
  padding: 25px 40px;
  margin-bottom: 30px;
}

@media (max-width: 860px) {
  .form-notice-info {
    padding: 20px 30px;
  }
}

@media (max-width: 480px) {
  .form-notice-info {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
}

.form-notice-info p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .form-notice-info p {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

.contact-guidance {
  text-align: center;
  width: 50%;
  margin: 40px auto;
  padding: 30px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
}

@media (max-width: 860px) {
  .contact-guidance {
    width: 80%;
    padding: 25px 20px;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .contact-guidance {
    width: 90%;
    padding: 20px 15px;
    margin: 20px auto;
  }
}

.contact-title {
  font-size: 16px;
  margin-bottom: 15px;
  color: #666;
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}

.phone-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 25px;
  border-radius: 25px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  text-decoration: none;
  color: #333;
  font-size: 24px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.phone-number:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding: 0 20px 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 480px) {
  .contact__phone {
    padding: 0;
  }
}

.contact__phone::after {
  content: "";
  position: absolute;
  top: 97%;
  left: 21%;
  width: 55%;
  height: 10px;
  background-color: #FFE08A;
  border-radius: 40px;
}

@media (max-width: 480px) {
  .contact__phone::after {
    width: 60%;
    left: 30%;
  }
}

.contact__phone-number {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 8px 0;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contact__phone-number:hover {
  color: #5e5e5e;
}

@media (max-width: 480px) {
  .contact__phone-number {
    font-size: 1.2rem;
  }
}

.contact__phone img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

@media (max-width: 480px) {
  .contact__phone img {
    width: 28px;
    height: 28px;
  }
}

.business-hours {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

@media (max-width: 480px) {
  .business-hours {
    font-size: 12px;
  }
}

.policy-section {
  background: linear-gradient(135deg, #0360AE 0%, #357abd 100%);
  color: white;
  padding: 30px;
  border-radius: 20px;
}

@media (max-width: 860px) {
  .policy-section {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .policy-section {
    padding: 20px 15px;
    border-radius: 15px;
  }
}

.policy-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 480px) {
  .policy-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
  padding: 10px 30px;
}

@media (max-width: 860px) {
  .policy-content {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .policy-content {
    padding: 0;
    font-size: 0.9rem;
  }
}

.tabbed-forms {
  width: 70%;
  margin: 80px auto;
}

@media (max-width: 860px) {
  .tabbed-forms {
    width: 90%;
    margin: 60px auto;
  }
}

@media (max-width: 480px) {
  .tabbed-forms {
    width: 95%;
    margin: 40px auto;
  }
}

.tabbed-forms__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px 20px 0 0;
  border-bottom: 2px solid #0360AE;
}

@media (max-width: 480px) {
  .tabbed-forms__tabs {
    border-radius: 15px 15px 0 0;
  }
}

.tabbed-forms__tab {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 12px;
  text-align: center;
  background: #fdfeff;
  cursor: pointer;
  border: 1px solid #0360AE;
}

@media (max-width: 480px) {
  .tabbed-forms__tab {
    padding: 10px 8px;
    font-size: 0.9rem;
  }
}

.tabbed-forms__tab.radius-setting-left {
  border-radius: 20px 0 0 0;
  border-bottom: none;
}

@media (max-width: 480px) {
  .tabbed-forms__tab.radius-setting-left {
    border-radius: 15px 0 0 0;
  }
}

.tabbed-forms__tab.radius-setting-right {
  border-radius: 0 20px 0 0;
  border-bottom: none;
}

@media (max-width: 480px) {
  .tabbed-forms__tab.radius-setting-right {
    border-radius: 0 15px 0 0;
  }
}

.tabbed-forms__tab.active {
  background: #0360AE;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .tabbed-forms__tab.active {
    font-size: 1rem;
  }
}

.tabbed-forms__required-color {
  color: red;
  font-weight: bold;
}

.tabbed-forms__content {
  border: 1px solid #0360AE;
  border-radius: 0 0 20px 20px;
  padding: 20px;
}

@media (max-width: 480px) {
  .tabbed-forms__content {
    border-radius: 0 0 15px 15px;
    padding: 15px;
  }
}

.tabbed-forms__form {
  display: none;
  width: 70%;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .tabbed-forms__form {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tabbed-forms__form {
    width: 100%;
  }
}

.tabbed-forms__form.active {
  display: block;
}

.tabbed-forms__form label.form-label {
  display: block;
  margin-top: 50px;
  margin-bottom: 10px;
  font-weight: bold;
}

@media (max-width: 480px) {
  .tabbed-forms__form label.form-label {
    margin-top: 30px;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
}

.tabbed-forms__form input.form-input,
.tabbed-forms__form textarea.form-textarea,
.tabbed-forms__form select.form-select {
  width: 100%;
  padding: 10px;
  margin-top: 4px;
}

@media (max-width: 480px) {

  .tabbed-forms__form input.form-input,
  .tabbed-forms__form textarea.form-textarea,
  .tabbed-forms__form select.form-select {
    padding: 8px;
    font-size: 0.9rem;
  }
}

.tabbed-forms__form .form-radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 4px;
  -moz-column-gap: 4px;
  column-gap: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 480px) {
  .tabbed-forms__form .form-radio-item {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
}

.tabbed-forms__form .form-radio-item:not(:last-of-type) {
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  .tabbed-forms__form .form-radio-item:not(:last-of-type) {
    margin-bottom: 12px;
  }
}

.tabbed-forms__form .form-radio-item .form-radio-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  border-radius: 9999px;
  cursor: pointer;
}

@media (max-width: 480px) {
  .tabbed-forms__form .form-radio-item .form-radio-button {
    width: 18px;
    height: 18px;
  }
}

.tabbed-forms__form .form-radio-item .form-radio-button:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #0360ae;
}

@media (max-width: 480px) {
  .tabbed-forms__form .form-radio-item .form-radio-button:checked::after {
    width: 10px;
    height: 10px;
  }
}

.tabbed-forms__form .form-note {
  font-size: 0.9rem;
  padding: 5px;
  margin-top: 10px;
  color: #555;
}

@media (max-width: 480px) {
  .tabbed-forms__form .form-note {
    font-size: 0.8rem;
    padding: 10px;
    margin-top: 8px;
  }
}

.tabbed-forms__form .form-submit-button {
  display: block;
  text-align: center;
  padding: 10px 30px;
  margin: 50px auto;
  font-weight: bold;
  color: #0360AE;
  background: #fff;
  border: 2px solid #0360AE;
  border-radius: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .tabbed-forms__form .form-submit-button {
    padding: 12px 25px;
    margin: 30px auto;
    font-size: 0.9rem;
    border-radius: 15px;
  }
}

.tabbed-forms__form .form-submit-button:hover {
  background: #0360AE;
  color: #fff;
}

.error-message {
  background-color: #ffebee;
  border: 1px solid #f44336;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .error-message {
    padding: 12px;
    margin-bottom: 15px;
  }
}

.error-message__title {
  color: #d32f2f;
  font-weight: bold;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .error-message__title {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

.error-message__list {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 480px) {
  .error-message__list {
    padding-left: 15px;
  }
}

.error-message__list li {
  color: #d32f2f;
  margin-bottom: 5px;
}

@media (max-width: 480px) {
  .error-message__list li {
    font-size: 0.8rem;
    margin-bottom: 3px;
  }
}

.thanks-container {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.thanks-container .thanks-header .thanks-title {
  font-size: 20px;
  color: #0360AE;
  font-weight: bold;
  margin-bottom: 20px;
}

.thanks-container .form-notice {
  font-size: 16px;
  line-height: 1.6;
  margin: 40px 0;
}

.thanks-container .form-button-wrapper {
  margin-top: 20px;
}

.thanks-container .form-button-wrapper .form-submit-button {
  display: inline-block;
  padding: 12px 36px;
  background-color: #0360AE;
  color: #fff;
  font-weight: bold;
  border-radius: 24px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.thanks-container .form-button-wrapper .form-submit-button:hover {
  background-color: #1f6dad;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

body a {
  text-decoration: none;
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@font-face {
  font-family: "HuiFontP29";
  src: url("../fonts/HuiFontP29.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ==============================
            エラーメッセージ
============================== */
.error-message {
  background-color: #fff3f3;
  border: 2px solid #ff6b6b;
  border-radius: 8px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
}

.error-message__title {
  color: #d63031;
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: bold;
}

.error-message__list {
  margin: 0;
  padding-left: 20px;
}

.error-message__list li {
  color: #d63031;
  margin-bottom: 5px;
  font-size: 14px;
}

.error-message h2 {
  color: #d63031;
  margin: 0 0 15px 0;
  font-size: 18px;
  font-weight: bold;
}

.error-message ul {
  margin: 0;
  padding-left: 20px;
}

.error-message ul li {
  color: #d63031;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-input.error {
  border-color: #ff6b6b;
  background-color: #fff3f3;
}

.form-input.error:focus {
  border-color: #ff6b6b;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

/* ==============================
            サイトヘッダー
============================== */
.site-header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  z-index: 1000;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 440px;
  height: 60px;
}

.logo-area .logo {
  height: 80px;
}

.logo-area .logo-title {
  margin: 10px 0;
  font-size: 1.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
}

.logo-area .logo-title img {
  max-width: 100%;
  display: block;
  height: auto;
}

.contact-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 650px;
  height: 50px;
}

.tel {
  color: #333;
  margin-right: 10px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tel-icon {
  margin-right: 10px;
  margin-top: 4px;
}

.tel-icon img {
  width: 23px;
  height: 23px;
}

.tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tel-number:hover {
  cursor: pointer;
  color: #666;
}

.cta-button {
  display: inline-block;
  background-color: #0360AE;
  color: #fff;
  padding: 14px;
  border-radius: 0px 0px 15px 15px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.cta-button:hover {
  background-color: #1f6dad;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.header__menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 24px;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.header__menu span {
  display: block;
  height: 2px;
  background: #0360AE;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.header__menu.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu.active span:nth-child(2) {
  opacity: 0;
}

.header__menu.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================
        ナビゲーション
========================== */
.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 20px;
}

.main-nav-container {
  padding: 10px;
}

.main-nav-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-nav-container ul li {
  padding: 10px 20px;
  margin-right: 8px;
  -webkit-box-shadow: -2px 6px 4px rgba(0, 0, 0, 0.1);
  box-shadow: -2px 6px 4px rgba(0, 0, 0, 0.1);
  background-color: #EEF0F0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.main-nav-container ul li:hover {
  background-color: #4E8BBC;
  -webkit-transform: translateY(0.1875em);
  transform: translateY(0.1875em);
}

.main-nav-container ul li:hover a {
  color: #fff;
}

.main-nav-container ul li a {
  text-decoration: none;
  font-weight: bold;
  color: #333;
  text-shadow: 0px 5px 3px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
}

.main-nav-container li:nth-child(1) {
  display: none;
}

.main-nav-sns-area {
  margin-bottom: 3px;
}

.main-nav-sns-area img {
  width: 41px;
  height: 41px;
  margin-right: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-nav-sns-area img:hover {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

/* ==============================
            メインビジュアル
=============================== */
.main-visual {
  height: 100vh;
  width: 100%;
  position: relative;
  padding-top: 120px;
}

.main-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -o-object-position: 0% 15%;
  object-position: 0% 15%;
}

.hero {
  position: absolute;
  top: 60%;
  left: 5%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  max-width: 650px;
}

.hero__heading {
  position: relative;
  top: -95%;
  right: -50%;
  font-family: "HuiFontP29", sans-serif;
  line-height: 1.5;
  font-size: 2.2rem;
  text-align: center;
  font-weight: 400;
  width: 40%;
}

.hero__info {
  width: 90%;
  margin: 10px auto 0;
}

.hero__price-title {
  color: #0360AE;
  margin: 0;
  position: relative;
  display: block;
  padding-bottom: 0.5rem;
}

.hero__price-number {
  font-size: 2.9rem;
}

.hero__price-service--highlight {
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 0.5rem;
  position: relative;
}

.hero__price-service--highlight::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #49A0AE;
  border-radius: 40px;
  opacity: 0.7;
}

.hero__price-service--highlight-secondary {
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
  margin-top: 0.5rem;
  position: relative;
}

.hero__price-service--highlight-secondary::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #49A0AE;
  border-radius: 40px;
  opacity: 0.7;
}

.hero__price-note {
  margin: 0;
}

.hero__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 0 auto;
}

.hero__contact-wrapper {
  padding: 0px;
}

.hero__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 0 20px 0 0;
  margin: 0 0 0px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero__phone:hover {
  color: #333;
}

.hero__phone::after {
  content: "";
  position: absolute;
  top: 75%;
  left: 0;
  width: 90%;
  height: 10px;
  background-color: #FFE08A;
  border-radius: 40px;
}

.hero__phone .tel-icon {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 8px 0;
}

.hero__phone img {
  width: 30px;
  height: 30px;
}

.hero__label {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px;
  background-color: #FFE08A;
  border-radius: 40px;
  margin: 15px 10px 0px;
  -webkit-box-shadow: 0px 4px 4px #d4c18c;
  box-shadow: 0px 4px 4px #d4c18c;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.hero__label:hover {
  background-color: #f7e6b8;
  -webkit-transform: translateY(0.1875em);
  transform: translateY(0.1875em);
}

.hero__time {
  margin: 0 auto;
  padding-left: 5%;
  padding-bottom: 10px;
}

.intro {
  max-width: 1300px;
  margin: 0 auto;
}

.intro__wrapper {
  width: 70%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  justify-items: center;
}

.intro__title {
  text-align: center;
  font-weight: bold;
  margin: 80px 0 40px;
  line-height: 1.4;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.intro__block {
  width: 100%;
  max-width: 550px;
  min-height: 650px;
  display: block;
}

.intro__block-title {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  background-color: #0360AE;
  padding: 15px;
  border-radius: 20px;
  width: 80%;
  margin: 0 auto 10px;
}

.intro__block-content {
  border: 3px #0360AE solid;
  border-radius: 20px;
  margin-top: -30px;
}

.intro__list {
  width: 90%;
  margin: auto;
  max-width: 500px;
  padding: 40px 20px 20px;
  margin: 0;
  list-style: none;
}

.intro__list-item {
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.2rem;
  list-style: none;
}

.intro__list-icon {
  width: 50px;
  padding: 0 5px;
}

.intro__list-illust {
  text-align: center;
}

.intro__list-illust-worries {
  width: 60%;
  max-width: 160px;
  height: auto;
}

.intro__subtitle {
  text-align: center;
  color: #0360AE;
  margin: 80px 0;
}

.service-philosophy {
  max-width: 100%;
  height: 700px;
  background-color: #0360AE;
  border-top: 50px solid #b0d0e2;
  border-bottom: 50px solid #b0d0e2;
  margin: 200px 0 0;
  color: #fff;
}

.service-philosophy-wrapper {
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
}

.service-philosophy h2 {
  font-family: "HuiFontP29", sans-serif;
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 130px;
  position: relative;
  z-index: 10;
  font-weight: 400;
}

.service-philosophy p {
  margin-left: 10%;
}

.service-philosophy img {
  position: absolute;
  top: -30%;
  left: 30%;
  width: 60%;
  height: auto;
  z-index: 0;
  opacity: 0.2;
}

.service {
  text-align: center;
  padding: 60px 20px;
}

.service__title {
  text-align: center;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.service__image {
  display: block;
  width: 60%;
  margin: 0 auto;
  height: auto;
}

.service__card {
  padding: 30px 60px;
  width: 100%;
  max-width: 650px;
  max-height: 300px;
  position: absolute;
  top: 65%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.service__card .info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.service__card .info-block img {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.service__card .info-block p {
  font-size: 1.5rem;
  position: relative;
}

.service__card .info-block p::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #49A0AE;
  border-radius: 40px;
  opacity: 70%;
}

.service__card .info-block p span {
  font-size: 1.2rem;
}

.service__card .notes {
  text-align: left;
  margin-bottom: 20px;
  color: #666;
  line-height: 1;
  text-align: left;
}

.service__card .notes p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.service-overview {
  width: 70%;
  max-width: 1200px;
  margin: 30px auto;
  display: grid;
  justify-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
}

.service-overview__item {
  position: relative;
  padding: 20px;
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.service-overview__icon {
  width: 100%;
  width: 300px;
  height: auto;
  margin-bottom: 15px;
}

.service-overview__title {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0360AE;
  position: absolute;
  width: 100%;
  top: 30%;
  left: 0;
  text-align: center;
}

.service-overview__description {
  width: 100%;
  width: 400px;
  margin: 0 auto;
  font-family: "Zen Maru Gothic";
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
}

.service-feature {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-feature__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  margin: 80px 0;
  color: #0360AE;
}

.feature-card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  padding: 20px;
  justify-items: center;
}

.feature-card {
  width: 500px;
  height: 740px;
  padding: 15px;
  background-color: #EEF0F0;
  -webkit-box-shadow: -16px 14px 28px -17px #a8a8a8;
  box-shadow: -16px 14px 28px -17px #a8a8a8;
  position: relative;
  border-radius: 20px;
}

.feature-card-bg__right,
.feature-card-bg__left {
  width: 50%;
  height: 50%;
  position: absolute;
  background-color: #4E8BBC;
  border-radius: 20px;
  z-index: -1;
}

.feature-card-bg__right {
  top: -3%;
  right: -5%;
}

.feature-card-bg__left {
  bottom: -3%;
  left: -5%;
}

.feature-card__image {
  display: block;
  margin: 10px auto;
  width: 80%;
}

.feature-card__wrapper {
  width: 80%;
  margin: 0 auto;
}

.feature-card__heading {
  text-align: center;
  position: relative;
  line-height: 1.7;
}

.feature-card__heading .underline {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.feature-card__heading .underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #49A0AE;
  border-radius: 40px;
  opacity: 0.7;
}

.feature-card__price {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  background-color: #4E8BBC;
  border-radius: 5px;
}

.feature-card__price-puls {
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  margin: 0;
  padding-left: 8px;
}

.feature-card__price--zihi {
  font-size: 1.1rem;
}

.feature-card__price-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #4E8BBC;
  border-radius: 5px;
  padding: 0px 20px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.feature-card__description {
  font-size: 1.1rem;
  line-height: 1.7;
}

.feature-card__description__list {
  font-size: 1.1rem;
  margin: 8px 0 0;
}

.feature-card__description__list__s {
  margin: 4px 0 18px;
  line-height: 18px;
}

.visit-hours {
  max-width: 1200px;
  margin: 0px auto;
}

.visit-hours__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  margin: 80px 0;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.visit-hours__image {
  width: 60%;
  display: block;
  margin: 0 auto;
}

.visit-hours__note {
  width: 60%;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .visit-hours__title {
    margin: 40px 0;
  }

  .visit-hours__image {
    width: 90%;
  }

  .visit-hours__note {
    font-size: 1.2rem;
  }
}

.visit-area {
  max-width: 1200px;
  margin: 0px auto;
}

.visit-area__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  margin: 80px 0;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.visit-area__image {
  width: 40%;
  display: block;
  margin: 0 auto;
  border: #0360AE 8px solid;
  border-radius: 10px;
}

.visit-area__content {
  width: 40%;
  padding: 20px 0;
  margin: 0 auto;
}

.visit-area__content p {
  font-size: 1.2rem;
}

@media (max-width: 860px) {
  .visit-area__title {
    margin: 80px 0 40px;
  }
}

@media (max-width: 480px) {
  .visit-area__image {
    width: 90%;
    border: 4px solid #0360AE;
  }

  .visit-area__content {
    width: 90%;
    text-align: center;
  }
}

.flow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.flow__title {
  text-align: center;
  font-weight: bold;
  margin: 80px 0;
  line-height: 1.4;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.flow__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}

.flow__step:last-child {
  margin-bottom: 0;
}

.flow__step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #0360AE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0360AE;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.flow__step-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
  border: 2px solid #4a90e2;
  border-radius: 15px;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flow__step-text {
  padding: 0 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flow__step-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0360AE;
  margin: 20px 0;
  padding: 10px 0;
}

.flow__step-description {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 10px 0;
}

.flow__step-image {
  width: 160px;
  height: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flow__step-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}

.flow__arrow {
  position: absolute;
  left: 39px;
  top: 70%;
  width: 2px;
  height: 40px;
  background-color: #0360AE;
  z-index: 1;
}

.flow__arrow::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 8px solid #0360AE;
}

.flow__step:last-child .flow__arrow {
  display: none;
}

@media (max-width: 860px) {
  .flow {
    padding: 20px 35px;
  }

  .flow__title {
    margin: 40px 0;
  }

  .flow__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .flow__step-heading {
    font-size: 1.2rem;
  }

  .flow__step-decoration {
    font-size: 1rem;
  }

  .flow__step-number {
    margin-right: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .flow__step-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }

  .flow__step-image {
    width: 150px;
    height: auto;
  }

  .flow__arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .flow__title {
    font-size: 1.8rem;
  }

  .flow__step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .flow__step-body {
    padding: 1.5rem;
    width: 100%;
  }

  .flow__step-heading {
    font-size: 1.1rem;
  }

  .flow__step-description {
    font-size: 0.9rem;
    text-align: left;
  }

  .flow__step-description .flow-br-sm-none {
    display: none;
  }

  .flow__step-image {
    width: 130px;
    height: auto;
  }
}

.consultation {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 100px;
}

.consultation__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  margin: 80px 0;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
}

.consultation__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 10px;
}

.consultation-guide {
  margin-top: 50px;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
  color: #0360AE;
}

.consultation-guide:hover {
  color: #88cbea;
}

.consultation-guide::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: 0px;
  margin-top: -2.5px;
  border-top: 1px solid;
  border-right: 1px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: right 0.3s ease, -webkit-transform 0.3s ease;
  transition: right 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, right 0.3s ease;
  transition: transform 0.3s ease, right 0.3s ease, -webkit-transform 0.3s ease;
}

.consultation-guide:hover::after {
  right: -5px;
}

.consultation-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 30%;
  flex: 1 1 30%;
  position: relative;
  border: #0360AE solid 3px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 15px;
  /* Navigation Buttons */
}

.consultation-card--hidden {
  display: none;
}

.consultation-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  z-index: 10;
}

.consultation-card__header-illust img {
  width: 200px;
  height: auto;
  padding: 20px;
}

.consultation-card__title {
  background-color: #0360AE;
  color: #fff;
  padding: 25px;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  border-radius: 20px;
}

.consultation-card__worry {
  padding: 20px 30px;
  height: 200px;
}

.consultation-card__worry-title {
  font-size: 1.1rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

.consultation-card__worry-title::before {
  content: "●";
  margin-right: 8px;
  font-size: 16px;
}

.consultation-card__worry-text {
  line-height: 1.8;
  margin: 5px 0 10px;
}

.consultation-card__service {
  padding: 16px;
  margin-top: 20px;
  background-color: #dbecef;
  border-radius: 0 0 17px 17px;
}

.consultation-card__service-title {
  font-size: 1.2rem;
  color: #0360AE;
  font-weight: bold;
  margin-bottom: 0;
  margin: 0;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.consultation-card__service-title::before {
  content: "▼";
  margin-right: 8px;
  font-size: 16px;
}

.consultation-card__service-text {
  line-height: 1.6;
  color: #0360AE;
  margin: 0;
  padding: 10px 30px;
}

.consultation-card__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #0360AE;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  background-color: #fff;
}

.consultation-card__nav:hover {
  color: #6798c1;
}

.consultation-card__nav--left {
  left: -60px;
  color: #0360AE;
}

.consultation-card__nav--right {
  right: -60px;
  color: #0360AE;
}

@media (max-width: 860px) {
  .consultation {
    padding: 40px 100px;
  }

  .consultation__title {
    font-size: 1.5rem;
    margin: 40px 0;
  }

  .consultation-card {
    width: 40%;
    margin: 0 auto;
  }

  .consultation-card img {
    width: 150px;
  }

  .consultation-card__title {
    font-size: 0.95rem;
    padding: 15px;
  }

  .consultation-card__worry-text,
  .consultation-card__service-text {
    margin: 20px 0;
    font-size: 0.9rem;
  }

  .consultation-card__worry-title,
  .consultation-card__service-title {
    font-size: 1rem;
  }

  .consultation-card__service {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .consultation {
    padding: 20px;
  }

  .consultation__heading {
    font-size: 1.3rem;
    margin: 40px 0;
  }

  .consultation__title {
    font-size: 1rem;
  }

  .consultation-card img {
    width: 150px;
  }

  .consultation-card__title {
    font-size: 0.8rem;
    padding: 12px;
  }

  .consultation-card__worry {
    padding: 0 20px;
    height: 140px;
  }

  .consultation-card__worry-title {
    font-size: 0.8rem;
  }

  .consultation-card__worry-text {
    font-size: 0.7rem;
    margin: 10px 0;
  }

  .consultation-card__service-title {
    font-size: 0.8rem;
    padding: 8px 0px;
  }

  .consultation-card__service-text {
    font-size: 0.7rem;
    padding: 0;
  }

  .consultation-card__nav {
    width: 20px;
    height: 20px;
    font-size: 8px;
  }

  .consultation-card__nav--left {
    left: -30px;
  }

  .consultation-card__nav--right {
    right: -30px;
  }
}

.intro {
  max-width: 1300px;
  margin: 0 auto;
}

.intro__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  justify-items: center;
}

.intro__title {
  text-align: center;
  font-weight: bold;
  margin: 80px 0 40px;
  line-height: 1.4;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.intro__block {
  width: 100%;
  max-width: 550px;
  min-height: 650px;
  display: block;
}

.intro__block-title {
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  background-color: #0360AE;
  padding: 15px;
  border-radius: 20px;
  width: 80%;
  margin: 0 auto 10px;
}

.intro__block-content {
  border: 3px #0360AE solid;
  border-radius: 20px;
  margin-top: -30px;
}

.intro__list {
  width: 90%;
  max-width: 500px;
  padding: 40px 20px 20px;
  margin: 0 auto;
  list-style: none;
}

.intro__list-item {
  padding: 15px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.2rem;
  list-style: none;
}

.intro__list-icon {
  width: 50px;
  padding: 0 5px;
}

.intro__list-illust {
  text-align: center;
}

.intro__list-illust-worries {
  width: 60%;
  max-width: 160px;
  height: auto;
}

.intro__subtitle {
  text-align: center;
  color: #0360AE;
  margin: 80px 0;
}

.service-contact {
  max-width: 100%;
  background-color: #0360AE;
  margin: 150px 0 0;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
  position: relative;
  border-top: 50px solid #b0d0e2;
  border-bottom: 50px solid #b0d0e2;
}

.service-contact .service-contact-wrapper {
  max-width: 1200px;
  margin: 0px auto;
  position: relative;
}

.service-contact__title {
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  width: 70%;
}

.service-contact__title .service-contact__title-underline {
  position: relative;
}

.service-contact__title .service-contact__title-underline::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #FFE08A;
  border-radius: 40px;
}

.service-contact__header {
  margin-bottom: 40px;
  position: relative;
}

.service-contact__header-illust-left {
  width: 150px;
  height: auto;
  position: absolute;
  left: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-contact__header-illust-right {
  width: 150px;
  height: auto;
  position: absolute;
  right: 100px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.service-contact__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 100px;
  margin-bottom: 30px;
}

.service-contact .contact-card--tel,
.service-contact .contact-card--web {
  background-color: #fff;
  border-radius: 40px;
  padding: 0px 30px;
  width: 350px;
  height: 150px;
}

.service-contact .contact-card__title-sub {
  color: #333;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-contact .contact-card__button--tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8px 0;
  margin-top: 24px;
  font-size: 2.1rem;
  color: #0360AE;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

.service-contact .contact-card__button--tel:hover {
  color: #1f6dad;
}

.service-contact .contact-card__button--tel img {
  width: 32px;
  margin-right: 10px;
}

.service-contact .contact-card__button--tel::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 5%;
  width: 90%;
  height: 8px;
  background-color: #FFE08A;
  border-radius: 40px;
}

.service-contact .contact-card__button--line img {
  width: 150px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.service-contact .contact-card__button--line img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.service-contact .contact-card__button--web {
  display: inline-block;
  background-color: #FFE08A;
  color: #333;
  border-radius: 40px;
  margin-top: 10px;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-box-shadow: 0px 4px 4px #d4c18c;
  box-shadow: 0px 4px 4px #d4c18c;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.service-contact .contact-card__button--web:hover {
  background-color: #f7e6b8;
  -webkit-transform: translateY(0.1875em);
  transform: translateY(0.1875em);
}

.service-contact__footer {
  color: #fff;
  font-size: 0.9rem;
  text-align: left;
  max-width: 1000px;
  margin-left: 2%;
}

.service-contact__footer p:first-child {
  margin-bottom: 10px;
}

.tag-section {
  text-align: center;
}

.tag-section__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  margin: 80px 0;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 860px) {
  .tag-section__title {
    margin: 80px 0 40px;
  }
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 35px;
  }
}

@media (max-width: 480px) {
  .tag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .tag-grid .sm-none {
    display: none;
  }
}

.tag-box {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #b0d0e2;
  padding: 15px 20px;
  text-align: center;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.tag-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #6bb8e0 0%, #4a9bc7 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
}

.tag-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 40%, transparent 70%);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 4;
}

.tag-box:before {
  -webkit-box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: inset -2px -2px 4px rgba(0, 0, 0, 0.1), 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tag-box:after {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.tag-box:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(135, 206, 235, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 6px 16px rgba(135, 206, 235, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
}

.tag-box:hover::before {
  background: linear-gradient(135deg, #5aa8d0 0%, #3a85b7 100%);
}

.tag-box:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

.tag-box.long-text {
  font-size: 13px;
  line-height: 1.3;
  padding: 12px 16px;
}

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

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

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

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

.tag-grid .tag-box {
  -webkit-animation: fadeInUp 0.6s ease forwards;
  animation: fadeInUp 0.6s ease forwards;
}

.tag-grid .tag-box:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(8) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(9) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(10) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(11) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(13) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(14) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(15) {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(16) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(17) {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(18) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(19) {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
  opacity: 0;
}

.tag-grid .tag-box:nth-child(20) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  opacity: 0;
}

.staff-introduction {
  max-width: 1300px;
  margin: 0 auto;
}

.staff-introduction__title {
  text-align: center;
  font-weight: bold;
  margin: 80px 0;
  line-height: 1.4;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.staff-introduction__lead {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 50px;
}

.staff-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  border: #0360AE solid 3px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 15px;
  padding: 24px;
  width: 100%;
  height: 700px;
  /* Navigation Buttons */
}

.staff-card__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid #0360AE;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  background-color: #fff;
}

.staff-card__nav:hover {
  color: #6798c1;
}

.staff-card__nav--left {
  left: -60px;
  color: #0360AE;
}

.staff-card__nav--right {
  right: -60px;
  color: #0360AE;
}

.staff-card__image-wrapper {
  width: 30%;
  margin: 16px auto;
  text-align: center;
}

.staff-card__image {
  width: 100%;
  height: auto;
}

.staff-card__position {
  width: 50%;
  margin: 0 auto;
  text-align: end;
  font-size: 1.2rem;
}

.staff-card__comment {
  padding: 20px;
  font-size: 1.2rem;
  line-height: 1.7;
}

@media (max-width: 860px) {
  .staff-introduction__title {
    margin: 40px 0;
  }

  .staff-introduction__lead {
    font-size: 0.8rem;
    width: 80%;
    margin: 10px auto 20px;
  }

  .staff-card {
    margin: 0 65px;
    width: 80%;
    height: auto;
    /* Navigation Buttons */
  }

  .staff-card__nav {
    width: 25px;
    height: 25px;
    font-size: 8px;
  }

  .staff-card__nav--left {
    left: 20px;
  }

  .staff-card__nav--right {
    right: 20px;
  }

  .staff-card__image-wrapper {
    width: 30%;
  }

  .staff-card__image {
    width: 100%;
  }

  .staff-card__position {
    width: 50%;
    margin: 0 auto;
    font-size: 1.2rem;
    text-align: center;
  }

  .staff-card__comment {
    padding: 20px;
    margin-bottom: 0;
    font-size: 0.7rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .staff-card__position {
    font-size: 0.9rem;
  }

  .staff-card__comment {
    padding: 10px;
  }
}

.faq {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.faq__title {
  text-align: center;
  font-weight: bold;
  margin: 80px 0;
  line-height: 1.4;
  color: #0360AE;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.faq__item {
  margin-bottom: 30px;
  overflow: hidden;
}

.faq__question {
  background: linear-gradient(135deg, #0360AE 0%, #357abd 100%);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 24px 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 30px;
}

.faq__question:hover {
  background: linear-gradient(135deg, #357abd 0%, #2968a3 100%);
}

.faq__question-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 20px;
  color: #fff;
}

.faq__arrow {
  width: 40px;
  height: 40px;
  color: #0360AE;
  background-color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.faq__arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #0360AE;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq__answer {
  background-color: #fff;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq__answer-text {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.faq__item--active .faq__arrow {
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq__item--active .faq__answer {
  max-height: 200px;
  padding: 30px;
}

/* Responsive design */
@media (max-width: 860px) {
  .faq {
    padding: 20px 15px;
  }

  .faq__title {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .faq__question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq__question-text {
    margin-right: 15px;
  }

  .faq__arrow {
    width: 35px;
    height: 35px;
  }

  .faq__item--active .faq__answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .faq__question-text {
    font-size: 0.9rem;
  }

  .faq__item--active .faq__answer {
    padding: 20px 32px;
  }

  .faq__item--active .faq__answer-text {
    font-size: 0.9rem;
  }
}

.document-links {
  max-width: 1200px;
  margin: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.document-links__item {
  display: inline-block;
  background-color: #FFE08A;
  color: #333;
  border-radius: 40px;
  margin-top: 10px;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  -webkit-box-shadow: 0px 4px 4px #d4c18c;
  box-shadow: 0px 4px 4px #d4c18c;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.document-links__item:hover {
  background-color: #f7e6b8;
  -webkit-transform: translateY(0.1875em);
  transform: translateY(0.1875em);
}

@media (max-width: 860px) {
  .document-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 80%;
  }

  .document-links .document-links__item {
    text-align: center;
  }
}

.site-fooder {
  margin: 100px 50px;
}

.site-fooder__logo {
  width: 50px;
}

.site-fooder__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  margin: 100px auto 30px;
}

.site-fooder__logo-area img {
  max-width: 100%;
  display: block;
  height: auto;
}

.site-fooder__logo-title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0360AE;
  font-weight: bold;
}

@media (max-width: 860px) {
  .site-header {
    width: 100%;
    max-width: 100%;
  }

  .site-header .header-container {
    max-width: 100%;
    margin: 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 30px 0 0;
  }

  .site-header .header-container .logo-area {
    width: 100%;
    height: auto;
  }

  .site-header .header-container .logo-area .logo {
    height: 50px;
  }

  .site-header .header-container .logo-area .logo-title {
    font-size: 0.8rem;
  }

  .site-header .header-container .contact-area {
    width: 80%;
  }

  .site-header .header-container .contact-area .tel {
    display: none;
  }

  .site-header .header-container .contact-area .cta-button {
    display: none;
  }

  .site-header .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .site-header .main-nav {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    z-index: 1000;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
  }

  .site-header .main-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .site-header .main-nav-container {
    width: 100%;
    margin-bottom: 15px;
  }

  .site-header .main-nav-container ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .site-header .main-nav-container ul li {
    width: 200px;
    height: 50px;
    text-align: center;
    padding: 8px 15px;
    margin: 8px;
    font-size: 0.9rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
  }

  .site-header .main-nav-sns-area img {
    width: 50px;
    height: 50px;
  }

  .main-visual {
    width: 100%;
    height: 60vh;
    position: relative;
    padding-top: 0;
  }

  .main-visual img {
    -o-object-position: 60% 0%;
    object-position: 60% 0%;
  }

  .main-visual .hero__heading {
    position: absolute;
    top: 20%;
    left: 55%;
    font-size: 2rem;
  }

  .hero {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 860px;
  }

  .hero__info {
    width: 55%;
    margin: 30px auto;
    max-width: 860px;
  }

  .hero__price-title {
    font-size: 1.5rem;
  }

  .hero__price-number {
    font-size: 2.2rem;
  }

  .hero__price-service--highlight {
    font-size: 1.5rem;
  }

  .hero__price-service--highlight-secondary {
    font-size: 2.2rem;
  }

  .hero__contact {
    width: 70%;
    height: 160px;
    margin: 15px auto;
    padding-bottom: 50px;
    background-color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 20px;
    position: relative;
    top: 10%;
  }

  .hero__contact-wrapper {
    max-width: 860px;
    width: 100%;
    height: 200px;
    background-color: #0360AE;
  }

  .hero__phone {
    padding: 10px;
    margin-bottom: 15px;
  }

  .hero__phone::after {
    top: 95%;
    left: 2%;
  }

  .hero__label {
    font-size: 1.2rem;
    padding: 15px;
    margin: 8px;
  }

  .hero__time {
    position: absolute;
    bottom: 0;
    left: 50%;
    padding-left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .intro {
    padding: 0 20px;
  }

  .intro__title {
    margin: 50px auto 30px;
    font-size: 1.5rem;
  }

  .intro__wrapper {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro__block {
    width: 100%;
    height: auto;
    min-height: 600px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .intro__block-title {
    width: 70%;
    font-size: 1.1rem;
  }

  .intro__list {
    width: 90%;
  }

  .intro__list-item {
    font-size: 1rem;
    padding: 12px 8px;
  }

  .intro__list-item img {
    width: 30px;
  }

  .intro__list-illust-worries {
    width: 30%;
  }

  .service-philosophy {
    height: auto;
    padding: 40px 20px;
    margin: 50px 0;
  }

  .service-philosophy h2 {
    font-size: 1.5rem;
    margin: 40px 0 100px;
  }

  .service {
    padding: 40px 20px;
  }

  .service__title {
    font-size: 1.5rem;
  }

  .service__image {
    width: 80%;
  }

  .service-overview {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-overview__icon {
    max-width: 350px;
    height: auto;
  }

  .service-overview__title {
    font-size: 1.2rem;
    top: 36%;
  }

  .service-overview__md-sm-height-advice {
    top: 33%;
  }

  .service-overview__md-sm-height-hearing {
    top: 30%;
  }

  .service-overview__description {
    width: 90%;
    margin: 0 auto;
    font-size: 1rem;
  }

  .service-feature {
    padding: 0;
  }

  .service-feature__title {
    margin: 40px 0;
  }

  .service-feature .feature-card-container {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .service-feature .feature-card {
    width: 80%;
    height: auto;
    min-height: 600px;
  }

  .service-feature .feature-card__wrapper {
    top: 45%;
  }

  .service-feature .feature-card__heading {
    font-size: 1.2rem;
  }

  .service-feature .feature-card__price {
    font-size: 1rem;
  }

  .service-feature .feature-card__description {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .underline::after {
    height: 5px;
  }

  .service-contact {
    margin: 100px 0;
    padding: 20px;
  }

  .service-contact__title {
    font-size: 1.2rem;
    margin-bottom: 0;
  }

  .service-contact__header::before,
  .service-contact__header::after {
    display: none;
  }

  .service-contact__header img {
    display: none;
  }

  .service-contact__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }

  .service-contact .contact-card--tel,
  .service-contact .contact-card--web {
    width: 60%;
    height: auto;
    padding: 20px;
  }

  .service-contact .contact-card--line img {
    width: 100px;
  }

  .service-contact .contact-card__button--tel::after {
    top: 90%;
    left: 28%;
    width: 45%;
  }
}

@media (max-width: 480px) {
  .site-header {
    max-width: 100%;
  }

  .site-header .header-container {
    width: 100%;
    padding: 5px;
  }

  .site-header .header-container .logo-area .logo {
    height: 50px;
  }

  .site-header .header-container .logo-area .logo-title {
    font-size: 0.7rem;
  }

  .site-header .header-container .contact-area {
    width: 50%;
  }

  .site-header .header-container .contact-area .tel .tel-number {
    font-size: 0.9rem;
  }

  .site-header .header-container .contact-area .tel .tel-number .hours {
    font-size: 0.8rem;
  }

  .site-header .header-container .contact-area .cta-button {
    display: none;
  }

  .site-header .main-nav-container ul li {
    padding: 6px 12px;
    margin: 5px;
    font-size: 0.8rem;
    cursor: pointer;
  }

  .site-header .main-nav-sns-area img {
    width: 50px;
    height: 50px;
  }

  .main-visual {
    height: 60vh;
  }

  .main-visual .hero__heading {
    display: block;
    width: 50%;
    font-size: 0.9rem;
    top: 20%;
    left: 50%;
    font-size: 1.4rem;
  }

  .hero {
    padding: 15px 0px;
  }

  .hero__info {
    width: 90%;
    max-width: 480px;
    margin-top: 10px;
  }

  .hero__contact-wrapper {
    width: 100%;
  }

  .hero__price-title {
    font-size: 1.2rem;
  }

  .hero__price-number {
    font-size: 1.5rem;
  }

  .hero__price-service--highlight {
    font-size: 1.2rem;
  }

  .hero__price-service--highlight-secondary {
    font-size: 1.5rem;
  }

  .hero__label {
    font-size: 1rem;
    padding: 12px;
  }

  .hero__time {
    font-size: 0.7rem;
    bottom: 10%;
  }

  .intro {
    padding: 0 20px;
  }

  .intro__subtitle {
    font-size: 1.2rem;
    margin: 40px 0;
  }

  .intro__block {
    min-height: auto;
  }

  .intro__block-title {
    font-size: 1rem;
    padding: 12px;
    min-height: auto;
  }

  .intro__list-item {
    font-size: 0.9rem;
    padding: 10px 6px;
  }

  .intro__list-icon {
    width: 40px;
  }

  .service-philosophy {
    padding: 30px 15px;
  }

  .service-philosophy h2 {
    font-size: 1.2rem;
    margin: 30px 0 80px;
  }

  .service-philosophy p {
    font-size: 0.5rem;
  }

  .service {
    padding: 30px 15px;
  }

  .service h3 {
    margin: 40px 0;
  }

  .service__summary h4 {
    font-size: 1.2rem;
  }

  .service__card {
    padding: 15px 10px;
    width: 75%;
  }

  .service__card .info-block p {
    font-size: 0.8rem;
  }

  .service__card .info-block p span {
    font-size: 0.6rem;
  }

  .service__card .info-block img {
    width: 20px;
    height: 20px;
    margin: 0 10px;
  }

  .service__card .notes {
    margin-left: 20px;
  }

  .service-overview__icon {
    width: 70%;
  }

  .service-overview__title {
    font-size: 1.2rem;
    top: 24%;
  }

  .service-overview__md-sm-height-advice {
    top: 23%;
  }

  .service-overview__md-sm-height-hearing {
    top: 19%;
  }

  .service-overview__description {
    font-size: 0.9rem;
  }

  .service-feature {
    padding: 0 15px;
  }

  .service-feature__title {
    font-size: 1.3rem;
    margin: 40px 0;
  }

  .service-feature .feature-card {
    min-height: 400px;
  }

  .service-feature .feature-card__heading {
    font-size: 0.7rem;
  }

  .service-feature .feature-card__heading .underline::after {
    height: 5px;
  }

  .service-feature .feature-card__price {
    width: 100%;
    font-size: 0.7rem;
  }

  .service-feature .feature-card__price-content-sm {
    width: 110%;
    margin-left: -10%;
  }

  .service-feature .feature-card__description {
    font-size: 0.7rem;
  }

  .feature-card__description__list {
    font-size: 0.9rem;
  }

  .feature-card__description__list__s {
    margin: 2px 0 12px;
  }

  .service-contact {
    padding: 15px;
    border-top: 25px solid #b0d0e2;
    border-bottom: 25px solid #b0d0e2;
    margin-bottom: 50px;
  }

  .service-contact__title {
    font-size: 1rem;
    padding-bottom: 0;
    width: 90%;
  }

  .service-contact__title .sm-br-none {
    display: none;
  }

  .service-contact__title-underline {
    color: #FFE08A;
  }

  .service-contact__title-underline::after {
    display: none;
  }

  .service-contact .contact-card--tel,
  .service-contact .contact-card--web {
    width: 70%;
    padding: 15px;
  }

  .service-contact .contact-card__title-sub {
    font-size: 0.9rem;
  }

  .service-contact .contact-card__button--tel {
    font-size: 1.4rem;
    margin-top: 0;
  }

  .service-contact .contact-card__button--tel::after {
    width: 55%;
  }

  .service-contact .contact-card__button--web {
    font-size: 1rem;
    padding: 15px;
  }

  .service-contact__footer {
    font-size: 0.8rem;
  }
}

@media (min-width: 1280px) {
  .site-header .header-container {
    width: 100%;
    margin: 0 auto;
  }

  .intro {
    max-width: 1400px;
  }

  .service__wrapper {
    max-width: 1400px;
  }

  .service-overview {
    max-width: 1400px;
  }

  .service-feature {
    max-width: 1400px;
  }

  .consultation {
    max-width: 1300px;
  }

  .tag-grid {
    max-width: 1400px;
  }
}