:root {
  --line: #dddddd;
}

html {
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden !important;
}

body {
  font-family: var(--japanese-font);
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  background: #fff;
  overflow-x: hidden !important;
  padding-top: 23px;
  letter-spacing: 0.1em;
}

a {
  color: #007acc;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.section {
  padding-block: clamp(48px, 6vw, 80px);
}

.container {
  --container-max: 1100px; /* 最大幅 */
  --gutter: 24px; /* 左右余白 */

  width: min(100% - (var(--gutter) * 2), var(--container-max));
  margin-inline: auto; /* 中央寄せ */
  padding-inline: var(--gutter); /* 左右の余白 */
}

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

.primary-button {
  display: inline-flex; /* アイコンとテキストを横並び */
  align-items: center;
  gap: 6px; /* テキストとアイコンの間隔 */
  padding: 8px 24px;
  border-radius: var(--button-radius);
  background-color: var(--button-bg-color);
  color: var(--button-text-color);
  text-decoration: none;
  transition: transform 0.3s, background 0.3s;
}

.primary-button i.ph {
  font-size: 16px;
  transition: transform 0.3s;
}

.primary-button:hover {
  background: color-mix(in srgb, var(--button-bg-color) 80%, white);
  transform: translateY(-2px);
  box-shadow: var(--global-shadow);
}

.primary-button:hover i.ph {
  transform: translateX(3px);
}

.primary-button:focus {
  box-shadow: var(--global-shadow);
}

.page-inner {
  max-width: 1000px;
  margin: 3rem auto;
  padding: 1rem;
  color: #333;
}

.page-hero {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-color);
  text-align: center;
  z-index: 2;
}

.hero-inner {
  padding: 2rem 1rem;
  border-radius: 8px;
  z-index: 2;
  position: relative;
}

.hero-inner h1 {
  font-family: var(--english-font);
  font-weight: 400;
  letter-spacing: 2px;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  letter-spacing: 2px;
}

.section-title {
  margin: 10px 0px 60px 0px;
}

.section-title .en {
  display: block;
  font-size: 26px;
  color: var(--text-color);
  font-family: var(--english-font);
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}

.section-title .ja {
  display: block;
  font-size: 14px;
  margin-top: 5px;
  color: var(--text-color);
  font-family: var(--english-font);
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 10px auto;
  border-bottom: 2px solid var(--main-color);
  position: relative;
}

body.admin-bar .site-header {
  top: 32px;
}

.visual {
  width: 100%;
  height: clamp(240px, 36vw, 520px);
}

/* 共通スタイル */
.breadcrumb {
  font-size: 0.75rem;
  padding: 4px 100px;
  width: 100%;
  background: color-mix(in srgb, var(--main-color) 20%, white);
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: var(--text-color);
}

.breadcrumb li:last-child {
  color: var(--text-color);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.4rem; /* アイコンとテキストの間隔 */
}

.breadcrumb li i {
  font-size: 0.8rem;
  color: var(--text-color);
}

/* スマホ用（幅768px以下） */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 4px 10px;
  }

  .page-hero {
    height: 260px;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 0px;
  }

  body.admin-bar .site-header {
    top: 46px; /* スマホ用 */
  }
}

