body {
  margin: 0 auto;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #1c1c1c;
  background-color: #f9f9f9;
}

.site-header {
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
  position: relative;
}

.header-inner {
    background-color: #652d90;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-wrap: nowrap; /* 折り返し禁止 */
}
.logo img {
  height: 50px;
  
}
.logo {
  flex-shrink: 0;
}
.global-nav {
flex-grow: 1;
  text-align: center;
  min-width: 0; /* はみ出さないように */
  white-space: nowrap; 
  min-width: 0;              /* 縮められるようにする */
  flex-shrink: 1;  
}

.global-nav ul {
    flex: 1;
  list-style: none;
  margin: 0;
  display: flex;
  gap: 30px;
  justify-content: right; 
  margin-right: 20px;
}

.global-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  font-size: clamp(0.7rem, 1.5vw, 1.0rem);
}


.header-contact {
  display: inline-block; /* ← ひとまとまりにする */
  font-size: 0.85rem;
  border-radius: 15px;
     white-space: nowrap;
      text-align: right;
      padding-right: 20px;
  font-size: 0.85rem;
  white-space: nowrap;
min-width: 0; /* はみ出さないように */
  white-space: nowrap; 
    min-width: 0;              /* 縮められるようにする */
  flex-shrink: 1;  
   flex: 0 1 auto; 
}

.header_tel img{
  height: 19px;
}
.header_tel {
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tel_1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}
.time {
  color: #652d90;
  background-color: #fff;
    border-radius: 15px;
    padding: 2px 15px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    margin: 6px auto;
    display: inline-block;
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  width: 45px;
  height: 30px;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  width: 100%; 
}


.privacy-policy {
  background: #f9f9f9;
  padding: 40px 20px;
  color: #333;
  line-height: 1.8;
  font-family: "Helvetica", "Arial", sans-serif;
}

.privacy-policy .container {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-policy h1 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  color: #652d90;
}

.privacy-policy h2 {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #652d90;
  border-left: 4px solid #652d90;
  padding-left: 10px;
}

.privacy-policy p {
  margin-bottom: 15px;
}

.privacy-policy ul {
  margin: 10px 0 20px 20px;
  padding-left: 20px;
  list-style-type: disc;
}

.privacy-policy ul li {
  margin-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .privacy-policy h1 {
    font-size: 1.5rem;
  }
  .privacy-policy h2 {
    font-size: 1rem;
  }
  .privacy-policy {
    padding: 30px 15px;
  }
  body {
  overflow-x: hidden;
}
  .section {
  margin: 0 30px;
  padding: 60px 0;
}
.logo img {
  height: 40px;
}
.site-header {
  width: 100%;
}

  .global-nav {  
    display: none;
    flex-direction: column;
    background-color: #652d90;
    position: absolute;
    top: 60px;
    right: 0;
    width: 150px;
    padding: 60px 1px;
    text-align: center;
    padding: 40px 20px;
  }
  .global-nav ul {
     list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 14px;
  }
  .global-nav li {
    margin: 0;
      border-bottom: 1px dashed #fff;
      line-height: 3;

  }
.global-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: normal;
}
  .global-nav.open {
    display: flex;
  }

  .header-contact {
   display: none;
  }
  
  .hamburger {
    display: flex;
  }
}

/* レスポンシブ */
@media (max-width: 1115px) {

.global-nav {  
    display: none;
    flex-direction: column;
    background-color: #652d90;
    position: absolute;
    top: 60px;
    right: 0;
    width: 150px;
    padding: 60px 1px;
    text-align: center;
    padding: 40px 20px;
  }
    .global-nav ul {
     list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 14px;
  }


  .global-nav li {
    margin: 0;
      border-bottom: 1px dashed #fff;
      line-height: 3;

  }

  .global-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: normal;
}

  .global-nav.open {
    display: flex;
  }

  .header-contact {
   display: none;
  }
  
  .hamburger {
    display: flex;
    width: 50px;
  }


}
