/*
Theme Name: 出張整体スカイハーツ
Theme URI: https://skyhearts.com
Author: Enivrant Design
Author URI: https://enivrant-design.com
Description: 出張整体スカイハーツ公式サイトのテーマ
Version: 1.0
Text Domain: skyhearts
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive, custom-background, custom-logo, custom-menu
*/

@charset "UTF-8";

/*-------------------------------------------
  Reset
-------------------------------------------*/

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

html {
  scroll-behavior: smooth;
  height: 100%;
  font-size: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

body {
  height: 100%;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic UI", Meiryo, sans-serif;
  background-color:#ebfaff;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: #555;
}

button,input,textarea,select,
pre,code,kbd,samp,
legend,table,caption,summary,
optgroup,option,output,
abbr,cite,dfn,var {
  font-family: inherit;
}

address {
  font-style: normal;
}

blockquote,
q {
  quotes: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset {
  border: none;
}

summary {
  list-style: none;
  cursor: pointer;
}

video, audio {
  display: block;
}

mark {
  background: transparent;
}

hr {
  border: none;
}

iframe {
  border: none;
}

/*-------------------------------------------
  Common
-------------------------------------------*/

.wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  color: #666;
  font-size: 2rem;
  font-weight: 500;
  padding: 4px 40px;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

/*-------------------------------------------
  Header
-------------------------------------------*/

.header-container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 2px solid #f5f5f5;
  z-index: 1000;
}

.site-title {
  background-color: #33BBD4;
  border: 1px solid #6DD0ED;
  border-radius: 16px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 4px 12px;
}

.site-title a {
  color: #fff;
}

.header-nav {
  display: flex;
  gap: 1.5rem;
}

.header-nav-item {
  font-size: 0.875rem;
  font-weight:500;
  color: #666;
}

.header-nav-item:hover,
.site-title:hover {
  color: #007D9C;
}

.hamburger-menu,
.hamburger-menu-overlay {
  display: none;
}

/*-------------------------------------------
  Hero-Section
-------------------------------------------*/
.hero-section-container {
  width: 100%;
  max-width: 1200px;
  margin: 4.5rem auto 0;
  padding: 0 16px;
  position: relative;
  height: 445px;
  overflow: hidden;
}

.hero-section-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

.hero-text-fade {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  max-width: 40%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
  z-index: 2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.hero-text-fade p {
  opacity: 0;
  margin: 0;
  position: relative;
  text-shadow: inherit;
  transition: opacity 1s ease-in-out;
}

.hero-text-fade p.strong {
  font-weight: bold;
  font-size: 2rem;
}

/*-------------------------------------------
  Lead-CTA
-------------------------------------------*/

.lead-cta {
  padding: 2rem 1rem 2rem;
  text-align: center;
}

.lead-cta-container {
  max-width: 768px;
  margin: 0 auto;
}

.lead-cta-line {
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.lead-cta-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.lead-cta-icon img {
  width: 80px;
  height: 80px;
  max-width: 100%;
  height: auto;
  margin: 0.7rem 0 1.5rem 0;
}

.lead-cta-keyline {
  font-weight: bold;
  font-size: 1.5rem;
  color: #005577;
}

/*-------------------------------------------
  Concept
-------------------------------------------*/

.concept-title {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  margin: 2rem 0 1.5rem;
  color: rgb(222, 65, 65);
}

.concept-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
  margin: 3rem 0 3.5rem;
}

.concept-item {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 300px;
  padding: 2rem 1.5rem;
  text-align: left;
  margin-bottom: 3rem;
}

.concept-number {
  width: 40px;
  height: 40px;
  background-color: rgb(0, 120, 180);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.contact-btn {
  display: inline-block;
  margin: 2rem auto 1.15rem;
  padding: 0.75rem 2rem;
  background-color: #33BBD4;
  color: #f9f9f9;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  border: 1.5px solid #f9f9f9;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #007a95;
  border-color: #007a95;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.contact-btn:focus,
.contact-btn:focus-visible {
  outline: 2px solid #007a95;
  outline-offset: 4px;
}

.btn-box {
  text-align: center;
}

/*-------------------------------------------
  Staff
-------------------------------------------*/

.staff-container {
  margin-bottom: 2rem;
}

.staff-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem; /* 単位 missing → 2remに修正 */
  position: relative;
}

.staff-info {
  position: absolute;
  left: 4rem;
  z-index: 2;
  height: 300px;
  padding: 1rem 0.7rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  line-height: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.staff-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: #222;
}

.staff-names-vertical {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
}

.staff-name,
.staff-name-en {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
}

.staff-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  line-height: 1.7;
  padding-left: 2rem;
}

.staff-name-en {
  font-size: 0.875rem;
  font-weight: normal;
  color: #555;
  letter-spacing: 0.25em;
  text-orientation: mixed;
}

.staff-img {
  position: relative;
  z-index: 1;
  margin: 3rem 0 0 4rem;
}

.staff-img img {
  display: block;
  width: 360px;
  height: auto;
  border-radius: 8px;
}

.staff-text {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.7;
  padding: 40px 3.5rem;
}

.staff-text p {
  margin-bottom: 1rem;
}

.career-qualifications-wrapper {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 1.5rem;
  align-items: flex-start;
}

.career-list,
.qualifications-list {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.5;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
}

.career-title,
.qualifications-title {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: -12px;
}

/*-------------------------------------------
  Service Menu
-------------------------------------------*/

.service-menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-left: clamp(1rem, 5vw, 5.5rem);
  padding-right: clamp(1rem, 5vw, 5.5rem);
}

.service-menu-block {
  background-color: #fff;
  border: 1px solid rgb(200, 200, 200);
  padding: 1.5rem;
  flex: 1 1 30%;
  min-width: 280px;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.service-menu-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-menu-title {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.service-menu-text {
  margin: 1rem 0 0.5rem;
  line-height: 1.5;
}

.service-menu-list {
  font-size: 1.1rem;
  line-height: 2;
  padding-left: 1.25rem;
}

.service-menu-caution {
  font-size: 0.875rem;
  font-weight: bold;
}

/*-------------------------------------------
  Voice
-------------------------------------------*/

.voice-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 4.5rem;
  margin-bottom: 4rem;
}

.voice-item {
  flex: 1 1 45%;
  min-width: 280px;
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.voice-lead {
  font-size: 1.125rem;
  font-weight: bold;
}

.voice-profile {
  font-size: 1rem;
}

.voice-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  padding-bottom: 1rem;
}

.voice-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #323232;
}

/*-------------------------------------------
  About
-------------------------------------------*/

.about-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  margin: 0 auto 4rem;
  max-width: 1300px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
}

.about-block {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 280px;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.about-data {
  margin-left: 2.25rem;
  font-size: 0.875rem;
  line-height: 0;
  word-break: keep-all;
  min-width: 0;
}

.about-services {
  list-style: disc outside;
  margin-left: 1.25rem;
  padding-left: 0;
}

.about-services li {
  margin-top: 0.875rem;
  line-height: 2;
}


/*-------------------------------------------
  FAQ
-------------------------------------------*/

.faq-container {
  padding: 0.5rem 2rem;
  margin: 0 auto 4rem;
  max-width: 1300px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
}

.faq-item dt {
  position: relative;
  padding: 1rem 0;
  font-size: 1.085rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item dt::after {
  content: '+';
  position: absolute;
  top: 1rem;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item dt.active::after {
  content: '−';
}

.faq-item dd {
  display: none;
  padding: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #505050;
}

.faq-item dd.open {
  display: block;
}

.faq-question,
.faq-answer {
  border-bottom: 1px solid #f5f5f5;
}

/*----------------------------------------
  Contact
----------------------------------------*/
.contact-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 4rem;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 16px;
}

.contact-label {
  display: block;
  font-size: 1.085rem;
  font-weight: bold;
  color: #555;
  letter-spacing: 1.2px;
  margin-bottom: 2rem;
}

.required {
  font-size: 0.875rem;
  color: rgb(222, 65, 65);
  letter-spacing: 4px;
  margin-left: 0.5rem;
}

.contact-container input,
.contact-container textarea,
.contact-container select {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.75rem;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  margin: 0.7rem 0 1.5rem 0;
}

.contact-container textarea {
  min-height: 160px;
  resize: vertical;
}

.label-text {
  display: block;
  font-size: 1.085rem;
  font-weight: bold;
  color: #555;
  margin-bottom: 0.5rem;
}

.datetime-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-container input[type="submit"],
.contact-container button {
  display: block;
  width: 20%;
  margin: 2rem auto 1.15rem;
  padding: 0.75rem 2rem;
  background-color: #33BBD4;
  color: #f9f9f9;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 1.1rem;
  border: 1.5px solid #f9f9f9;
  cursor: pointer;
}

.contact-container input[type="submit"]:hover,
.contact-container button:hover {
  background-color: #007a95;
  border-color: #007a95;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}


/*----------------------------------------
  Responsive (max-width: 768px)
----------------------------------------*/
@media (max-width: 768px) {
  .contact-container {
    padding: 1rem;
    margin: 0 auto 3rem;
  }

  .contact-label {
    font-size: 1rem;
  }

  .required {
    font-size: 0.75rem;
  }

  .contact-container input,
  .contact-container textarea,
  .contact-container select {
    font-size: 0.95rem;
    padding: 0.65rem;
  }

  .contact-container input[type="submit"],
  .contact-container button {
    font-size: 1rem;
    padding: 0.9rem;
    width: 80%;
  }
}


/*-------------------------------------------
  Footer
-------------------------------------------*/

.footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.footer-sns a img {
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}

.footer-sns a:hover img {
  opacity: 0.6;
}

/*-------------------------------------------
  Responsive Common
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 4px 16px;
  }
}

/*-------------------------------------------
  Responsive Hamburger-Menu
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .header-nav {
    position: fixed;
    top: 3.5rem;
    right: 0;
    width: 48vw;
    max-width: 300px;
    height: 100%;
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .header-nav.open {
    transform: translateX(0);
  }

  .hamburger-menu {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
  }

  .hamburger-menu span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px 0;
    background-color: #333;
    transition: 0.3s;
  }

  .hamburger-menu.is-active .hamburger-line-top {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger-menu.is-active .hamburger-line-middle {
    opacity: 0;
  }

  .hamburger-menu.is-active .hamburger-line-bottom {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hamburger-menu-overlay {
    display: none;
    position: fixed;
    top: 3.5rem;
    left: 0;
    width: 100%;
    height: calc(100% - 3.5rem);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .hamburger-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  nav {
    position: relative;
  }

  .header-nav-item {
    font-size: 0.875rem;
  }
}

/*-------------------------------------------
  Responsive Hero-Section
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .hero-section-container {
    max-width: 100%;
    padding: 0 8px;
    margin: 1.5rem auto 0;
    height: auto;
  }

  .hero-section-container picture {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .hero-section-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0;
  }

  .hero-text-fade {
    top: 30%;
    transform: translateY(-30%);
    max-width: 90%;
    font-size: 1rem;
    text-align: left;
  }

  .hero-text-fade p.strong {
    font-size: clamp(1.1rem, 4vw, 1.3rem);
  }
}

/*-------------------------------------------
  Responsive Lead-CTA
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .lead-cta {
    padding: 1.5rem 1rem 2rem;
    margin-top: 0;
    text-align: center;
  }

  .lead-cta-container {
    max-width: 100%;
    margin: 0 auto;
  }

  .lead-cta-line {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .lead-cta-line.strong {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .contact-btn {
    display: block;
    width: 80%;
    max-width: 320px;
    margin: 0 auto 1.25rem;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem 1rem;
    white-space: normal;
  }
}

/*-------------------------------------------
  Responsive Concept
-------------------------------------------*/

@media (max-width: 1024px) {
  .concept-title {
    font-size: 1.25rem;
  }

  .concept-list {
    flex-direction: column;
    align-items: center;
  }

  .concept-item {
    width: 100%;
    max-width: 600px;
  }
}

/*-------------------------------------------
  Responsive Staff
-------------------------------------------*/

@media (max-width: 768px) {
  .section-title {
    font-size: 1.68rem;
    text-align: center;
  }

  .staff-card {
    flex-direction: column;
    align-items: center;
  }

  .staff-info {
    position: static;
    height: auto;
    margin-bottom: 1rem;
    padding: 1rem;
    box-shadow: none;
    writing-mode: horizontal-tb;
    text-align: center;
  }

  .staff-title,
  .staff-name,
  .staff-name-en {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    text-align: center;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
  }

  .staff-name {
    font-size: 1rem;
    font-weight: bold;
    padding-left: 0;
  }

  .staff-names-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .staff-img {
    margin: 0;
  }

  .staff-text {
    padding: 1rem;
    font-size: 1rem;
  }

  .career-qualifications-wrapper {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1rem;
  }
}

/*-------------------------------------------
  Responsive Service-Menu
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .service-menu-container {
    flex-direction: column;
    padding: 0 1rem;
    gap: 2rem;
  }

  .service-menu-block {
    flex: 1 1 100%;
    min-width: auto;
  }

  .service-menu-title {
    font-size: 1.25rem;
  }

  .service-menu-list {
    font-size: 0.875rem;
    line-height: 1.75;
  }

  .service-menu-text {
    font-size: 0.875rem;
  }

  .service-menu-caution {
    font-size: 0.875rem;
  }
}

/*-------------------------------------------
  Responsive Voice
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .voice-container {
    flex-direction: column;
    padding: 0 1.5rem;
  }

  .voice-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 100%;
  }

  .voice-lead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    gap: 0.5rem;
  }

  .voice-profile {
    font-size: 0.8rem;
  }

  .voice-icon {
    margin-bottom: 0.5rem;
  }

  .voice-text {
    font-size: 0.95rem;
  }
}

/*-------------------------------------------
  Responsive About
-------------------------------------------*/

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    margin-bottom: 4rem;
  }

  .about-block {
    flex: none;
    width: 100%;
  }

  .about-data {
    margin-left: 0;
    font-size: 0.875rem;
  }

  .about-services {
    font-size: 0.875rem;
    margin-left: 1rem;
  }
}

/*-------------------------------------------
  Responsive FAQ
-------------------------------------------*/

@media screen and (max-width: 768px) {
  .faq-container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    margin-bottom: 4rem;
  }

  .faq-item dt {
    font-size: 0.95rem;
  }

  .faq-item dd {
    font-size: 0.9rem;
  }
}