@media screen and (max-width: 990px) {
  .pc-only {
    display: none !important;
  }
}

@media not screen and (max-width: 990px) {
  .tablet-and-smaller {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .bigger-than-sp {
    display: none !important;
  }
}

@media not screen and (max-width: 768px) {
  .sp-only {
    display: none;
  }
}

img,
picture {
  max-width: 100%;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
p,
li,
button {
  color: #383838;
}

h2 {
  text-align: center;
  font-weight: bold;
}

p span.highlight {
  background: #fff7a2;
  font-weight: 700;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

main.single ul:not(.wpp-list) {
  list-style: square outside;
  padding-left: 1em;
}
main.single ul:not(.wpp-list) li {
  font-size: 13px;
  line-height: 1.8;
}
main.single ul:not(.wpp-list) li + li {
  margin-top: 1em;
}

p {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 13px;
  }
}

a {
  color: #383838;
}

a.button {
  display: inline-flex;
  font-size: 10px;
  border: 1px solid #FF6666;
  border-radius: 50px;
  color: #FF6666;
  gap: 4px;
  align-items: center;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  padding: 8px 16px;
  transition: 0.3s;
}
a.button::after {
  content: "";
  display: block;
  width: 13px;
  height: 4px;
  background-image: url(../images/red-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
a.button:hover, a.button:focus {
  opacity: 0.8;
}
a.button--red {
  justify-content: center;
  background: #FF6666;
  color: white;
  border-radius: 24px;
  gap: 24px;
}
a.button--red::after {
  width: 3em;
  height: auto;
  aspect-ratio: 4/1;
  border-radius: 8px;
  background-image: url(../images/white-arrow.svg);
}
@media screen and (max-width: 768px) {
  a.button--red {
    border-radius: 8px;
  }
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.container {
  max-width: 1160px;
  padding: 0 30px;
  box-sizing: border-box;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

ul.menu {
  display: flex;
  list-style-type: none;
}
ul.menu > li {
  position: relative;
}
ul.menu > li a {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 2em;
  letter-spacing: 0.06em;
}
ul.menu > li a::before {
  content: "";
  display: block;
  margin-right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 4px;
  background-color: #FF6666;
}
@media not screen and (max-width: 990px) {
  ul.menu > li a {
    font-weight: bold;
  }
}
ul.menu > li + li {
  margin-left: 24px;
}
footer ul.menu > li > li a::before {
  background: white;
  color: white;
}

header .nav .container,
footer .nav .container {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
header .nav__logo,
footer .nav__logo {
  max-width: 272px;
  height: auto;
}
header .nav__logo h1,
footer .nav__logo h1 {
  text-indent: -9999px;
  position: absolute;
}
header .nav__menu,
footer .nav__menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 auto;
}
@media not screen and (max-width: 990px) {
  header .nav__menu,
footer .nav__menu {
    display: flex;
    align-items: center;
    margin-left: 30px;
  }
  header .nav__menu__button,
footer .nav__menu__button {
    display: none;
  }
}

header {
  width: 100vw;
  box-sizing: border-box;
  padding: 24px 60px;
  position: sticky;
  top: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.3) 84.5%, rgba(255, 255, 255, 0) 100%);
  z-index: 100;
}
body.home header {
  position: fixed;
}
@media screen and (max-width: 990px) {
  header {
    padding: 24px 16px;
  }
  header .nav {
    padding: 20px 0;
    top: 0;
    z-index: 10;
  }
  header .nav__logo img {
    max-width: 180px;
  }
  header .nav__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header .nav__menu__items {
    padding: 16px;
    background: #FF6666;
    transition: 0.5s;
    opacity: 1;
    position: absolute;
    display: flex;
    align-items: flex-start;
    top: 0;
    right: 0;
    transform: translateY(-120%);
    box-sizing: border-box;
    overflow: scroll;
    z-index: 1;
    pointer-events: none;
    padding: 40px 64px 40px 48px;
    border-bottom-left-radius: 32px;
  }
  header .nav__menu__items button.tablet-and-smaller {
    position: absolute;
    top: 21px;
    right: 15px;
  }
  header .nav__menu__button {
    position: relative;
    display: inline-block;
    width: 24px;
    box-sizing: content-box;
    background: none;
    border: none;
    padding: 0;
  }
  header .nav__menu__button span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #FF6666;
    margin: 6px 0;
    transition: 0.3s;
  }
  header .nav__menu__button + .nav__menu__items ul {
    flex-direction: column;
    align-items: flex-end;
  }
  header .nav__menu__button + .nav__menu__items ul > li > a {
    font-size: 12px;
    color: white;
  }
  header .nav__menu__button + .nav__menu__items ul > li > a::before {
    background: white;
  }
  header .nav__menu__button + .nav__menu__items ul > li + li {
    margin-left: 0;
    margin-top: 24px;
  }
  header .nav__menu__button + .nav__menu__items .tablet-and-smaller > a {
    display: block;
    margin-top: 40px;
  }
  header .nav__menu__button + .nav__menu__items .tablet-and-smaller > a.contact-button-link {
    width: calc(100vw - 64px);
    padding: 16px;
    text-align: center;
  }
  header .nav__menu__button.active span:first-of-type {
    transform: rotate(45deg) translate(7px, 3px);
  }
  header .nav__menu__button.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .nav__menu__button.active span:last-of-type {
    transform: rotate(-45deg) translate(8px, -4px);
    flex: 0 0 36px;
  }
  header .nav__menu__button.active + .nav__menu__items {
    opacity: 1;
    width: auto;
    transform: translateY(0px);
    bottom: auto;
    pointer-events: all;
  }
  header .nav__menu__button.active + .nav__menu__items > div {
    position: relative;
  }
  header .nav__menu__button.active + .nav__menu__items > div > .menu-header-container,
header .nav__menu__button.active + .nav__menu__items > div > .tablet-and-smaller {
    position: relative;
    z-index: 2;
  }
}

footer {
  background: linear-gradient(123.05deg, #ff6666 31.62%, #f98484 72.88%);
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}
footer .container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer * {
  color: white !important;
}
footer a::before {
  background-color: white !important;
}
footer .privacy {
  text-align: right;
  text-decoration: underline;
  margin: 24px 0 20px;
  font-size: 12px;
  line-height: 2em;
  letter-spacing: 0.06em;
}
footer .copyright {
  font-size: 8px;
  text-align: center;
  margin-top: 40px;
  font-weight: 300;
  flex: 1 1 100%;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 990px) {
  footer .container {
    flex-direction: column;
    align-items: center;
  }
  footer .container * {
    text-align: center;
  }
  footer .container ul.menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
  }
  footer .container ul.menu li + li {
    margin-left: 0;
  }
}

.heading-with-subtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.heading-with-subtitle small.subtitle {
  display: inline-block;
  padding: 8px;
  background: white;
  color: #FF6666;
  margin-left: 16px;
  margin-bottom: -8px;
  position: relative;
  z-index: 1;
  border-radius: 2px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  font-family: "Inter", sans-serif;
}
.heading-with-subtitle__main {
  display: inline-block;
  padding: 16px;
  background: #FF6666;
  border-radius: 4px;
}
.heading-with-subtitle__main * {
  color: white;
}
.heading-with-subtitle__main > h1,
.heading-with-subtitle__main > h2,
.heading-with-subtitle__main > h3 {
  color: white;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.bracketed-header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}
.bracketed-header::before, .bracketed-header::after {
  content: "";
  display: block;
  width: 30.5px;
  aspect-ratio: 30/71;
  gap: 24px;
  transform: translateY(20%);
  background-image: url("../images/bracket.svg");
}
.bracketed-header::after {
  transform: translateY(20%) rotate(180deg);
}
@media screen and (max-width: 768px) {
  .bracketed-header {
    gap: 24px;
    margin-bottom: 64px;
  }
  .bracketed-header::before {
    transform: translateY(35%);
  }
  .bracketed-header::after {
    transform: translateY(35%) rotate(180deg);
  }
  .bracketed-header:has(strong)::before {
    transform: translateY(25%);
  }
  .bracketed-header:has(strong)::after {
    transform: translateY(25%) rotate(180deg);
  }
}
.bracketed-header__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bracketed-header__main small.subtitle {
  font-family: "Inter", sans-serif;
  color: rgba(255, 102, 102, 0.4);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 400;
}
.bracketed-header__main small.subtitle:empty {
  display: none;
}
.bracketed-header__main h2 {
  display: flex;
  align-items: flex-end;
  font-size: 48px;
  letter-spacing: 0.05em;
  gap: 0 16px;
  background-color: transparent;
  color: #FF6666 !important;
  margin: 0 !important;
  padding: 0;
}
.bracketed-header__main h2 strong {
  font-size: 64px;
}
.bracketed-header__main h2 small {
  font-size: 40px;
  color: #383838;
}
@media screen and (max-width: 768px) {
  .bracketed-header__main h2 {
    flex-direction: column;
    align-items: center;
    font-size: clamp(24px, 6.5vw, 48px);
  }
  .bracketed-header__main h2 strong {
    font-size: clamp(24px, 6.5vw, 48px);
  }
  .bracketed-header__main h2 small {
    font-size: 24px;
  }
}

.post-list .heading-with-subtitle {
  margin-bottom: 40px;
}
.post-list .heading-with-subtitle h3 {
  font-size: 24px;
}
.post-list__main {
  position: relative;
  z-index: 1;
  padding: 40px 55px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0px 0px 20px 0px #FFACAC40;
  margin-top: 40px;
}
.post-list__items {
  position: relative;
  display: grid;
  grid-gap: 40px;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 990px) and (min-width: 768px) {
  .post-list__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .post-list__items {
    grid-template-columns: 1fr;
  }
}
.post-list__items__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0px;
}
.post-list__items__item__thumbnail {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}
.post-list__items__item__thumbnail > img {
  width: 100%;
  height: 207px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.post-list__items__item__text {
  display: block;
  position: relative;
  margin: -40px 20px 0 20px;
  flex: 1 1 auto;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 0px #FFACAC40;
  background: white;
  border-radius: 6px;
  width: calc(100% - 40px);
}
.post-list__items__item__text__meta {
  margin-bottom: 8px;
  font-size: 13px;
}
.post-list__items__item__text__meta * {
  font-size: 10px;
  line-height: 18px;
}
.post-list__items__item__text__meta span.tag {
  display: inline-block;
  padding: 0 4px;
  border-radius: 2px;
  margin-left: 10px;
}
.post-list__items__item__text__meta span.tag::before {
  content: "#";
}
.post-list__items__item__text__meta span.date {
  color: #FF6666;
}
.post-list__items__item__text__meta span.tag {
  background-color: #FF6666;
  color: white;
}
.post-list__items__item__text h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.post-list__items__item:not(:has(img)) .post-list__items__item__text {
  margin-top: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .post-list__items__item__thumbnail img {
    height: 180px;
  }
  .post-list__items__item__text {
    margin: -16px 10px 0;
  }
}
.post-list__items__item--case .post-list__items__item__thumbnail img {
  object-fit: contain;
}
.post-list__items__item--seminar {
  align-items: stretch;
}
.post-list__items__item--seminar .post-list__list__item__thumbnail, .post-list__items__item--seminar .post-list__list__item__thumbnail > img {
  height: 170px;
}
.post-list__items__item--seminar .post-list__list__item__thumbnail.inactive, .post-list__items__item--seminar .post-list__list__item__thumbnail > img.inactive {
  filter: grayscale(100%);
}
.post-list__items__item--seminar .post-list__list__item__title h3 {
  font-weight: 800;
  line-height: 1.8;
}
.post-list__items__item--seminar .seminar-meta {
  margin: 22px 0 5px;
}
.post-list__items__item--seminar .seminar-meta span {
  color: #FF6666;
}
.post-list__items__item--seminar .seminar-meta span.date {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  margin-right: 10px;
}
.post-list__items__item--seminar .seminar-meta span.lang {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  background: white;
  padding: 3px 6px;
}
.post-list__items__item--seminar__title h3 {
  font-style: 16px;
  font-weight: 800;
  line-height: 1.8;
}
.post-list__items__item--post {
  background: white;
  border-radius: 6px;
  align-items: stretch;
}
.post-list__items__item--post > img {
  object-fit: contain;
  object-position: top center;
}
.post-list__items__item--post .post-body {
  padding: 12px 24px 24px;
}
.post-list__items__item--post .post-body .post-excerpt p {
  font-size: 12px;
  color: #FF6666;
  margin: 0.5em 0;
}
.post-list__items__item--post .post-date {
  color: #FF6666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4px;
}
.post-list__items__item--post h3 {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
}
.post-list__items__item--post .post-supplementary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.post-list__items__item--post .post-supplementary__author {
  position: relative;
  flex: 0 0 70px;
}
.post-list__items__item--post .post-supplementary__author > img {
  position: relative;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  display: inline-block;
  margin: 0 10px 10px 0;
}
.post-list__items__item--post .post-supplementary__author::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: 0;
  bottom: 0;
  background: #7FDB9F;
}
.post-list__items__item--collateral {
  position: relative;
}
.post-list__items__item--collateral .collateral-cat {
  display: block;
  position: absolute;
  top: 0;
  left: calc(50% - 105px);
  writing-mode: tb-rl;
  text-orientation: upright;
  padding: 10px 6px 32px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  color: white;
  background: #FF6666;
  white-space: nowrap;
}
.post-list__items__item--collateral .collateral-cat::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 0px;
  bottom: -1px;
  right: -1px;
  border-style: solid;
  border-color: transparent transparent #f7f7f7 transparent;
  border-width: 0 0 26px 26px;
}
.post-list__items__item--collateral .post-list__list__item__thumbnail {
  max-width: 166px;
  max-height: 220px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .post-list__items__item--collateral .post-list__list__item__thumbnail img {
    height: 220px;
  }
}
.post-list__items__item--collateral h3 {
  margin: 20px auto;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.8;
  flex: 1 1 auto;
  text-align: center;
}
.post-list__items__item--collateral .collateral-dl {
  text-align: center;
}
.post-list__items__item--collateral .collateral-dl > a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 6px;
  color: #FF6666;
  font-weight: 800;
  font-style: 13px;
  width: 200px;
  height: 50px;
}
.post-list__to-main {
  text-align: center;
}
.post-list__to-main a.button--red {
  margin: 40px auto 0;
  width: 90%;
  max-width: 306px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.1em;
  gap: 8px;
}
.post-list__to-main a.button--red::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .post-list__main {
    padding: 40px 26px;
  }
}

#pankz {
  padding: 0;
}
#pankz .container {
  text-align: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  color: #FF6666;
  gap: 4px 16px;
}
#pankz .container * {
  font-size: 10px;
  line-height: 2;
  color: #4C4C4C;
}

.philosophy {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .philosophy {
    padding-top: 80px;
  }
}
.philosophy .container {
  display: grid;
  grid-gap: 40px;
  padding: 0;
}
@media not screen and (max-width: 768px) {
  .philosophy .container {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .philosophy .container .philosophy__main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .philosophy .container > img {
    max-height: 732px;
  }
}
.philosophy__items__item {
  background: #FFF5F5;
  position: relative;
  padding: 40px;
  margin-top: 48px;
  border-radius: 8px;
}
.philosophy__items__item h3 {
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  padding: 8px;
  color: white !important;
  font-family: "Inter", sans-serif;
  background-color: #FF6666;
  border-radius: 2px;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.philosophy__items__item h3::before {
  display: none;
}
.philosophy__items__item ul li {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.philosophy__items__item ul li * {
  text-align: center;
}
.philosophy__items__item ul li h4 {
  font-size: 22px;
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 12px;
}
.philosophy__items__item ul li p {
  font-size: 12px;
  line-height: 1.6;
  color: #FF6666;
  margin: 0;
}
.philosophy__items__item ul hr {
  width: 100px;
  border-top: 1px solid #FF6666;
  margin: 32px auto;
}
.philosophy__items__item ul hr:last-child {
  display: none;
}

/*# sourceMappingURL=common.css.map */
