@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap");
/*
  Utility classes
*/
.is-hidden {
  display: none !important;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

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

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.is-menu-open {
  overflow: hidden;
}

/* Button */
.button {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #111;
  background-color: #111;
  color: #fff;
  font-weight: 700;
  transition: background-color 0.3s, color 0.3s;
}
.button:hover {
  background-color: #fff;
  color: #111;
}
.button--secondary {
  background-color: #fff;
  color: #111;
}
.button--secondary:hover {
  background-color: #111;
  color: #fff;
}

/* Card */
.card-deck {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .card-deck {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .card-deck {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  display: flex; /* flexコンテナに変更 */
  flex-direction: column; /* 子要素を縦に並べる */
  border: 1px solid #111;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card article {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* 親要素の高さに合わせて伸びる */
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(17, 17, 17, 0.1);
}
.card__image {
  width: 100%;
  height: auto; /* 高さを自動調整 */
  /* object-fit と aspect-ratio を削除 */
}
.card__body {
  flex-grow: 1; /* 画像以外の残りのスペースを埋める */
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.card__barista {
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 8px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #111;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: 2px solid #111;
  outline-offset: -2px;
}

textarea.form-control {
  resize: vertical;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.form-radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-radio-label input[type=radio] {
  margin-right: 8px;
  width: 1.2em;
  height: 1.2em;
  accent-color: #111;
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-submit .button {
  width: 100%;
  max-width: 300px;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.9rem;
  line-height: 1.8;
}
.text-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #111;
}
.text-content p {
  margin-bottom: 20px;
}
.text-content__date {
  margin-top: 40px;
  text-align: right;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-list__item {
  border-bottom: 1px solid #ddd;
}

.news-list__link {
  display: flex;
  align-items: center;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
}
@media (max-width: 767px) {
  .news-list__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.news-list__link:hover {
  background-color: #f5f5f5;
}

.news-list__date {
  font-size: 0.9rem;
  color: #757575;
}

.news-list__meta {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .news-list__meta {
    width: 240px;
    flex-shrink: 0;
  }
}

.news-list__title {
  font-weight: bold;
}
@media (min-width: 768px) {
  .news-list__title {
    margin-left: 0;
  }
}

.news-list .category-label {
  margin: 0 15px;
  font-weight: normal;
  background-color: #111;
  color: #fff;
}

.pagination {
  margin-top: 60px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 44px;
  height: 44px;
  padding: 5px 15px;
  border: 1px solid #111;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}
.pagination .page-numbers.current {
  background-color: #111;
  color: #fff;
  border-color: #111;
  cursor: default;
}
.pagination .page-numbers.dots {
  border: none;
  padding: 5px 0;
}
.pagination .page-numbers:not(.current):not(.dots):hover {
  background-color: #111;
  color: #fff;
}

.no-results {
  text-align: center;
}

.related-posts {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #111;
}
.related-posts__title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.gallery {
  margin: 30px 0;
}
.gallery__main-slider {
  margin-bottom: 10px;
}
.gallery__main-slider img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__thumbnail-slider .slick-slide {
  margin: 0 5px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.gallery__thumbnail-slider .slick-slide.slick-current {
  opacity: 1;
}
.gallery__thumbnail-slider .slick-slide img {
  width: 100%;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.gallery .slick-arrow {
  color: #111;
}

.category-label {
  display: inline-block;
  min-width: 110px;
  text-align: center;
  padding: 4px 12px;
  margin: 0 20px;
  border: 1px solid #111;
  font-size: 0.75rem;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 479px) {
  .category-label {
    margin: 0px;
  }
}

.breadcrumb {
  max-width: 1024px;
  margin: 0 auto;
  padding: 15px 20px;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #aaa;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
}
.breadcrumb__item a {
  color: #111;
  text-decoration: underline;
}
.breadcrumb__item a:hover {
  text-decoration: none;
}

/*
 * ブロックエディターのスタイル調整
 */
body.editor-styles-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

/* エディターの横幅をサイトのコンテンツ幅に合わせる */
.wp-block {
  max-width: 800px;
}

.search-bar {
  max-width: 800px;
  margin: 0 auto 40px;
}
.search-bar__form {
  display: flex;
  gap: 10px;
}
.search-bar__input {
  flex-grow: 1;
  padding: 10px;
  border: 1px solid #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

/* Page Header */
.page-header {
  padding: 80px 20px 40px;
  text-align: center;
  border-bottom: 1px solid #111;
}
.page-header__title {
  font-size: 2.5rem;
  line-height: 1.2;
}

.section {
  padding: 80px 20px;
}
.section__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}
.section__title--light {
  color: #fff;
}
.section__link-wrapper {
  margin-top: 40px;
  text-align: center;
}

.post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #111;
}
.post-header__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.post-header__categories .category-label {
  margin: 0;
}
.post-header__title {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.post-header__date {
  font-size: 1rem;
}

.post-thumbnail {
  margin-bottom: 2em;
}
.post-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.post-navigation {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #111;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex-basis: 48%;
  max-width: 48%;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: flex;
  align-items: center;
  padding: 20px;
  border: 1px solid #111;
  height: 100%;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: #111;
  color: #fff;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.post-navigation .nav-previous {
  text-align: left;
}
.post-navigation .nav-previous a {
  justify-content: flex-start;
}
.post-navigation .nav-next {
  text-align: right;
}
.post-navigation .nav-next a {
  justify-content: flex-end;
}
.post-navigation .nav-arrow {
  font-size: 1.5rem;
  margin: 0 10px;
}
.post-navigation .nav-label {
  font-size: 0.8rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.nav-previous .post-navigation .nav-label {
  border-right: 1px solid;
  padding-right: 8px;
}

.barista-profile {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid #111;
}
.barista-profile__title {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.barista-profile__inner {
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
}
@media (max-width: 479px) {
  .barista-profile__inner {
    flex-direction: column;
    gap: 20px;
  }
}
.barista-profile__avatar {
  flex-shrink: 0;
  width: 120px;
  text-align: center;
}
.barista-profile__avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.barista-profile__content {
  flex-grow: 1;
}
.barista-profile__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.barista-profile__name {
  font-size: 1.3rem;
}
.barista-profile__sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.barista-profile__sns-icon svg {
  width: 16px;
  height: 16px;
  stroke: #111;
  transition: transform 0.3s;
}
.barista-profile__sns-icon:hover svg {
  transform: scale(1.2);
}
.barista-profile__bio {
  font-size: 0.9rem;
  line-height: 1.8;
}
.barista-profile__bio p {
  margin-bottom: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  border-bottom: 1px solid #111;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__inner {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .header__inner {
    padding: 0 40px;
  }
}

.header__logo img {
  height: 40px;
  width: auto;
}

.header__hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 110;
}
@media (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111;
  position: absolute;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s;
    visibility: hidden;
    z-index: 105;
  }
  .header__nav.is-active {
    transform: translateX(0);
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .header__nav {
    position: static;
    transform: none;
    visibility: visible;
    height: auto;
    width: auto;
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  .header__nav {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .header__nav-list {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .header__nav-list {
    display: flex;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .header__nav-item {
    margin: 30px 0;
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .header__sns {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__sns {
    margin-left: 30px;
  }
  .header__sns a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #111;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
  }
  .header__sns a svg {
    stroke: #111;
    transition: stroke 0.3s;
  }
  .header__sns a:hover {
    background-color: #111;
  }
  .header__sns a:hover svg {
    stroke: #fff;
  }
}

.main {
  padding-top: 80px;
}

@media screen and (min-width: 783px) {
  .admin-bar .header {
    top: 32px;
  }
}

/* Footer */
.footer {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.footer__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo img {
  height: 200px;
  width: auto;
}
.footer__sns {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.footer__sns .footer__sns-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.footer__sns .footer__sns-icon svg {
  stroke: #fff;
  transition: stroke 0.3s;
}
.footer__sns .footer__sns-icon:hover {
  background-color: #fff;
}
.footer__sns .footer__sns-icon:hover svg {
  stroke: #111;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-bottom: 50px;
  list-style: none;
}
.footer__copy {
  font-size: 0.8rem;
  color: #aaa;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    height: calc(100vh - 80px);
  }
}
.hero__image-wrapper, .hero__logo-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .hero__image-wrapper, .hero__logo-wrapper {
    width: 50%;
  }
}
.hero__image-wrapper {
  height: 50vh;
}
@media (min-width: 768px) {
  .hero__image-wrapper {
    height: 100%;
  }
}
.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.section-split {
  display: flex;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-split {
    flex-direction: column;
  }
}

.split-item {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  transition: flex 0.5s ease;
}
.split-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
@media (min-width: 769px) {
  .split-item:hover {
    flex: 1.5;
  }
}
.split-item__content {
  position: relative;
  z-index: 2;
}
.split-item__title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .split-item__title {
    font-size: 2rem;
  }
}
.split-item__text {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto;
}

.parallax-section {
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .parallax-section {
    min-height: 300px;
    background-attachment: scroll;
  }
}

/* Concept Detail */
.concept-detail {
  display: flex;
  flex-direction: column;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .concept-detail {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
}
.concept-detail__image-wrapper, .concept-detail__text-wrapper {
  width: 100%;
}
@media (min-width: 768px) {
  .concept-detail__image-wrapper, .concept-detail__text-wrapper {
    width: 50%;
  }
}
.concept-detail__image-wrapper {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .concept-detail__image-wrapper {
    margin-bottom: 0;
  }
}
.concept-detail__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .concept-detail__text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-color: #f9f9f9;
  }
}
@media (min-width: 768px) {
  .concept-detail--reverse .concept-detail__image-wrapper {
    order: 2;
  }
}
.concept-detail__title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.concept-detail__text {
  line-height: 1.8;
}

/* How It Works */
.how-it-works {
  background-color: #111;
  color: #fff;
}
.how-it-works .section__title {
  color: #fff;
}
.how-it-works__diagram {
  max-width: 800px;
  margin: 0 auto;
}

.filter-bar {
  max-width: 1024px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 40px;
}
.filter-bar__group {
  display: flex;
  flex-grow: 1;
  gap: 20px;
}
@media (max-width: 767px) {
  .filter-bar__group {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}
.filter-bar__search {
  display: flex;
  gap: 10px;
  flex-grow: 1;
}
.filter-bar__input {
  padding: 10px;
  border: 1px solid #111;
  flex-grow: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}
.filter-bar__controls {
  display: flex;
  gap: 10px;
  align-items: center;
}
.filter-bar__label {
  margin-right: 10px;
  flex-shrink: 0;
}
.filter-bar__select {
  min-width: 150px;
  padding: 10px;
  border: 1px solid #111;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.faq-group {
  margin-bottom: 80px;
}
.faq-group:last-child {
  margin-bottom: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #111;
}
.faq-list__item {
  border-bottom: 1px solid #111;
}
.faq-list__item[open] > .faq-list__question::after {
  border-color: #fff;
  transform: translateY(-50%) rotate(-135deg);
}
.faq-list__item[open] > .faq-list__question {
  background-color: #111;
  color: #fff;
}
.faq-list__question {
  position: relative;
  display: block;
  padding: 20px 40px 20px 20px;
  cursor: pointer;
  list-style: none;
}
.faq-list__question::-webkit-details-marker {
  display: none;
}
.faq-list__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #111;
  border-right: 2px solid #111;
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.3s;
}
.faq-list__answer {
  padding: 0 20px 30px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-list__answer p {
  border-top: 1px solid #aaa;
  padding-top: 20px;
}
.faq-list__answer a {
  text-decoration: underline;
}

.recruitment-post {
  max-width: 800px;
  margin: 0 auto 60px;
  border: 1px solid #111;
}
.recruitment-post__title {
  font-size: 1.5rem;
  padding: 20px;
  background-color: #111;
  color: #fff;
}

.recruitment-list {
  padding: 20px;
}
.recruitment-list__item {
  padding: 20px 0;
  border-bottom: 1px solid #aaa;
}
.recruitment-list__item:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .recruitment-list__item {
    display: flex;
  }
}
.recruitment-list__term {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .recruitment-list__term {
    width: 30%;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.recruitment-list__description {
  line-height: 1.8;
  font-size: 0.9rem;
}

.section--dark {
  background-color: #111;
  color: #fff;
}
.section--dark .member-card__role {
  color: #ddd;
}
.section--dark .member-card {
  background-color: #111;
  border-color: #fff;
}

.member-deck {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: 1fr;
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 480px) {
  .member-deck {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .member-deck {
    grid-template-columns: repeat(3, 1fr);
  }
}

.member-card {
  text-align: center;
  border: 1px solid #111;
  padding: 30px 20px;
}
.member-card__image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 20px;
}
.member-card__name {
  font-size: 1.5rem;
}
.member-card__role {
  color: #757575;
  margin-bottom: 15px;
  font-size: 0.9rem;
}
.member-card__description {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.7;
}

.post {
  max-width: 800px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #111;
}
.post-header__title {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
.post-header__date {
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */