@charset "UTF-8";
/**
 * Sora Style - Main SCSS Entry
 * WordPress テーマ用スタイル
 * コンパイル先: assets/css/style.css
 */
/**
 * Variables
 */
/**
 * Reset / Normalize (minimal)
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

/**
 * Base styles
 */
body {
  font-family: "noto-sans-jp", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111118;
  background-color: #FAFAFA;
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
}

.alignwide {
  max-width: 90vw;
}

.alignfull {
  max-width: 100%;
  width: 100vw;
}

/**
 * Header layout
 */
.site-branding {
  padding: 24px 20px;
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
}
.site-title a {
  color: #111118;
}
.site-title a:hover {
  color: inherit;
}

.site-description {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: #55566B;
}

@media (min-width: 768px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
/**
 * Footer layout
 */
.site-footer {
  padding: 32px 20px;
  font-size: 0.875rem;
  color: #55566B;
}

.site-info {
  font-size: 0.75rem;
  text-align: center;
  color: #8C8EA3;
}

.site-footer .nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}

.site-footer .nav-menu a {
  color: #55566B;
}
.site-footer .nav-menu a:hover {
  color: inherit;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.social-links li a {
  font-size: 1.25rem;
  line-height: 1;
  color: #8C8EA3;
}
@media (hover: hover) {
  .social-links li a:hover {
    color: inherit;
  }
}

/**
 * Sidebar layout
 */
.sidebar {
  padding: 24px 0;
}

@media (min-width: 768px) {
  .has-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
  }
}
/**
 * Main content area
 */
.site-main {
  padding: 24px 0;
  min-height: 50vh;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E6E6EF;
}

.page-title {
  margin: 0;
  font-size: 1.5rem;
}

.archive-description {
  margin-top: 16px;
  color: #55566B;
  font-size: 0.9375rem;
}

/**
 * フロントページ（ヒーロー + セクション）
 */
.front-page {
  padding: 0;
}

/* ヒーローセクション */
.front-hero {
  position: relative;
  width: 100%;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.front-hero__image {
  position: absolute;
  inset: 0;
}
.front-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.front-hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.front-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 20px;
}

.front-hero__title {
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.07em;
  margin: 0;
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .front-hero__title {
    font-size: 5rem;
  }
}

/* ヒーローに画像がない場合 */
.front-hero:not(:has(.front-hero__image)) .front-hero__title {
  color: #111118;
  text-shadow: none;
}

/* セクション共通 */
.front-sections {
  padding: 48px 0;
}

.front-section {
  padding: 48px 0;
}
.front-section:not(:last-child) {
  border-bottom: 1px solid #E6E6EF;
}

.front-section__title {
  margin: 0 0 32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: 0.07em;
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .front-section__title {
    font-size: 2.5rem;
  }
}

.front-section__content {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.front-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 32px;
}
@media (min-width: 576px) {
  .front-section__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .front-section__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.front-section__list .entry {
  padding: 0;
  border-bottom: none;
}

.front-section__more {
  margin: 32px 0 0;
  text-align: center;
}

.front-section__empty {
  text-align: center;
  color: #55566B;
  margin: 0;
}

/**
 * Entry (post / page content)
 */
.entry-header {
  margin-bottom: 24px;
}

.entry-title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  line-height: 1.3;
}
.entry-title a {
  color: #111118;
}
.entry-title a:hover {
  color: inherit;
}

.entry-meta {
  font-size: 0.875rem;
  color: #55566B;
}

.entry-content {
  margin-top: 24px;
}
.entry-content > * + * {
  margin-top: 1em;
}

.entry-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E6E6EF;
  font-size: 0.875rem;
  color: #55566B;
}

/* Post list */
.posts-list,
.entries {
  list-style: none;
  margin: 0;
  padding: 0;
}

.posts-list .entry,
.entries .entry {
  padding: 32px 0;
  border-bottom: 1px solid #E6E6EF;
}
.posts-list .entry:first-child,
.entries .entry:first-child {
  padding-top: 0;
}

.post-thumbnail {
  display: block;
  margin-bottom: 16px;
}
.post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

/**
 * Navigation
 */
.main-navigation {
  width: 100%;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.main-navigation a {
  display: block;
  padding: 16px 24px;
  color: #111118;
  font-weight: 500;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
  color: inherit;
}

/* Sub menu */
.main-navigation ul ul {
  display: none;
  flex-direction: column;
}

.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
  display: flex;
}

.main-navigation ul ul a {
  padding-left: 32px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
}

@media (max-width: 767px) {
  .menu-toggle {
    display: block;
    padding: 16px 24px;
    margin: 0 20px 16px 0;
  }
  .main-navigation ul {
    display: none;
    flex-direction: column;
  }
  .main-navigation ul.toggled {
    display: flex;
  }
}
/* Pagination */
.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
  justify-content: center;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #E6E6EF;
  border-radius: 2px;
}

.pagination .current,
.nav-links .current {
  background-color: #f5f5f5;
}

.pagination a:hover,
.nav-links a:hover {
  border-color: inherit;
  color: inherit;
}

/**
 * Widgets
 */
.widget {
  margin-bottom: 32px;
}

.widget-title {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid #E6E6EF;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.widget li:last-child {
  border-bottom: none;
}

.widget a:hover {
  color: inherit;
}

/**
 * Buttons
 */
.button,
.wp-block-button__link,
input[type=submit],
input[type=button],
button {
  display: inline-block;
  padding: 16px 24px;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: inherit;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.button:hover,
.wp-block-button__link:hover,
input[type=submit]:hover,
input[type=button]:hover,
button:hover {
  background-color: inherit;
  color: #fff;
}

.read-more {
  font-weight: 500;
}

.icon-instagram {
  display: inline-block;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23000" d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  width: 1em;
  height: 1em;
  background-color: currentColor;
}

.icon-twitter {
  display: inline-block;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1220 1227"><path fill="%23000" d="M714.163 519.284L1160.89 0H1055.03L667.137 450.887L357.328 0H0L468.492 681.821L0 1226.37H105.866L515.491 750.218L842.672 1226.37H1200L714.137 519.284H714.163ZM569.165 687.828L521.697 619.934L144.011 79.6944H306.615L611.412 515.685L658.88 583.579L1055.08 1150.3H892.476L569.165 687.854V687.828Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  width: 1em;
  height: 1em;
  background-color: currentColor;
}

.icon-youtube {
  display: inline-block;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23000" d="M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  width: 1em;
  height: 1em;
  background-color: currentColor;
}

.icon-facebook {
  display: inline-block;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path fill="%23000" d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  width: 1em;
  height: 1em;
  background-color: currentColor;
}

.icon-tiktok {
  display: inline-block;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23000" d="M448,209.91a210.06,210.06,0,0,1-122.77-39.25V349.38A162.55,162.55,0,1,1,185,188.31V278.2a74.62,74.62,0,1,0,52.23,71.18V0l88,0a121.18,121.18,0,0,0,1.86,22.17h0A122.18,122.18,0,0,0,381,102.39a121.43,121.43,0,0,0,67,20.14Z" /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  width: 1em;
  height: 1em;
  background-color: currentColor;
}

/**
 * Utility classes
 */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  padding: 0.5em 1em;
  background: #FAFAFA;
  border: 1px solid #E6E6EF;
  z-index: 100000;
}

.alignleft {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.alignright {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
