@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2

note: |
  These remedies are recommended
  as a starter for any project.

category: file
*/
/* @docs
label: Box Sizing

note: |
  Use border-box by default, globally.

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

/* @docs
label: Line Sizing

note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.

links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property

category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins

note: |
  Remove the tiny space around the edge of the page.

category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute

note: |
  Maintain `hidden` behaviour when overriding `display` values.

  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes

note: |
  Switch to rem units for headings

category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins

note: |
  Keep h1 margins consistent, even when nested.

category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping

note: |
  Overflow by default is bad...

category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule

note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`

category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds

note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default

category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
}

/* @docs
label: Responsive Images

note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.

  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely

category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios

note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.

category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width

note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.

category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders

note: |
  Remove the border on images inside links in IE 10 and earlier.

category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow

note: |
  Hide the overflow in IE 10 and earlier.

category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements

note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)

links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/

category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs

note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10

category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

html, body, input, textarea {
  font-size: 16px;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 12.5px;
}

body {
  background: #111111;
  color: #fff;
  line-height: 1.5;
  overflow-wrap: break-word;
}

a {
  color: #f0f0f0;
  text-underline-position: under;
}

p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.for-tablet {
  display: none;
}
@media screen and (min-width: 768px) {
  .for-tablet {
    display: block;
  }
}

.for-pc {
  display: none;
}
@media screen and (min-width: 1200px) {
  .for-pc {
    display: block;
  }
}

.wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.header__inner {
  overflow-y: auto;
}

.header__gnaviBtn {
  display: none;
}

.header__gnaviBtn-label {
  display: block;
  width: 50px;
  height: 0;
  padding-top: 50px;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background: rgba(17, 17, 17, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin: 0;
  border: 0 solid transparent;
  outline: 0 solid transparent;
  cursor: pointer;
  color: transparent;
  overflow: hidden;
  z-index: 11000;
}
@media screen and (hover: hover) {
  .header__gnaviBtn-label {
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__gnaviBtn-label:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnaviBtn-label {
    display: none;
  }
}
.header__gnaviBtn-label:before {
  content: "";
  width: 22px;
  height: 2px;
  background: #eee;
  position: absolute;
  top: 19px;
  left: 14px;
}
.header__gnaviBtn-label:after {
  content: "";
  width: 22px;
  height: 2px;
  background: #eee;
  position: absolute;
  top: 31px;
  left: 14px;
}
.header__gnaviBtn-label:before, .header__gnaviBtn-label:after {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
  -webkit-transform: none;
  transform: none;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
:checked + .header__gnaviBtn-label {
  background: transparent;
  backdrop-filter: unset;
}
:checked + .header__gnaviBtn-label:before {
  top: 25px;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
:checked + .header__gnaviBtn-label:after {
  top: 25px;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.header__gnavi {
  position: fixed;
  top: 0;
  left: -250px;
  z-index: 9900;
  padding: 51px 0 15px;
  background: rgba(17, 17, 17, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}
:checked ~ .header__gnavi {
  transform: translateX(250px);
}
@media screen and (min-width: 1200px) {
  .header__gnavi {
    padding-top: 10px;
  }
}

.header__gnaviMain ul,
.header__gnaviMain li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}
.header__gnaviMain ul {
  padding: 0 10px;
}
.header__gnaviMain li a {
  display: block;
  padding: 0.5em 1em;
  font-family: "Inter", "Noto Sans JP", -apple-system, sans-serif;
  font-weight: 800;
  text-decoration: none;
  opacity: 1;
  font-size: 1rem;
  text-align: left;
}
@media screen and (hover: hover) {
  .header__gnaviMain li a {
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .header__gnaviMain li a:hover {
    opacity: 0.6;
  }
}

body.home .menu-item.toppage {
  display: none;
}

.container {
  padding-bottom: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .container {
    padding-bottom: 20px;
  }
}
body:not(.home) .container {
  padding-top: 50px;
}

.site__title {
  font-size: 1rem;
  font-family: "Inter", "Noto Sans JP", -apple-system, sans-serif;
  font-weight: 800;
  opacity: 1;
  text-align: left;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .site__title {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .site__title {
    padding-right: 180px;
    padding-left: 180px;
  }
}
.site__title a {
  text-decoration: none;
}
@media screen and (hover: hover) {
  .site__title a {
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .site__title a:hover {
    opacity: 0.6;
  }
}
.site__title em {
  font-style: normal;
}

.content {
  position: relative;
  z-index: 10;
  overflow: hidden;
  max-width: 1728px;
  background: rgba(17, 17, 17, 0.9);
  color: #f0f0f0;
  padding: 10px 10px;
  transition: padding 0.3s ease;
}
@media screen and (min-width: 768px) {
  .content {
    padding: 10px 20px;
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .content {
    padding-right: 160px;
    padding-left: 160px;
  }
}
@media screen and (min-width: 1600px) {
  body.single .content {
    max-width: 1520px;
  }
}

.content + .content {
  margin-top: 60px;
}
@media screen and (min-width: 1200px) {
  .content + .content {
    margin-top: 80px;
  }
}

.content__title {
  font-family: "Inter", "Noto Sans JP", -apple-system, sans-serif;
  font-weight: 800;
  font-size: max(2.4rem, 5.20833333vw);
  font-weight: bold;
  color: #f0f0f0;
  line-height: 1.35;
  text-align: left;
  padding: 20px 10px;
}
.content__title span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .content__title {
    font-size: 2.75rem;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.content .content__title {
  margin-top: 10px;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .content .content__title {
    margin-top: 10px;
  }
}
.article__box .content__title {
  padding-right: 0;
  padding-left: 0;
}

.content__subtitle {
  font-family: "Inter", "Noto Sans JP", -apple-system, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 1200px) {
  .content__subtitle {
    font-size: 1.25rem;
  }
}

.content__title h1,
.content__title h2,
.content__subtitle h2,
.content__subtitle h3 {
  margin: 0;
  font-size: inherit;
}

.content__logo {
  display: block;
  margin: 0 auto 20px;
}
@media screen and (min-width: 1200px) {
  .content__logo {
    margin-bottom: 20px;
  }
}
.content__logo img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 0 auto;
}

.content__caption {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 10px;
}
@media screen and (min-width: 1200px) {
  .content__caption {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
  }
}
.content__caption p {
  margin: 0;
}
.content__caption p + p {
  margin-top: 1em;
}

.content__list {
  padding: 0 10px;
}
.content--topics .content__list {
  padding: 0;
}
.content__list ul, .content__list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.content__list .listItem a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  vertical-align: top;
}
@media screen and (hover: hover) {
  .content__list .listItem a {
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .content__list .listItem a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 1200px) {
  .content__list .listItem a {
    padding: 12.5px 10px;
  }
}
.content__list .listItem a:after {
  content: "";
  display: block;
  clear: both;
}
.content__list .listItem .listItem__inner002 {
  display: block;
}
.content__list .listItem .listItem__inner003 {
  display: block;
  clear: both;
  width: 100%;
  margin-top: 0;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .content__list .listItem .listItem__inner003 {
    clear: unset;
  }
}
.content__list .listItem .listItem__date-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-right: 10px;
  margin-bottom: 0.25rem;
}
.content__list .listItem .listItem__date {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: normal;
  color: #f0f0f0;
  line-height: 1.5;
  letter-spacing: 0.125em;
}
.content__list .listItem .listItem__ctg {
  display: inline-block;
  background: rgb(65, 65, 65);
  font-size: 0.75rem;
  font-weight: normal;
  color: #f0f0f0;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-left: 0.5em;
  padding: 0.25em 0.5em 0.1875em;
}
.content__list .listItem .listItem__title {
  display: flex;
  align-items: flex-start;
  gap: 0.25em;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
.content__list .listItem .listItem__caption {
  display: block;
  font-size: 0.625rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .content__list .listItem .listItem__caption {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1200px) {
  .content__list .listItem .listItem__caption {
    font-size: 1rem;
    padding-left: 19px;
  }
}
@media screen and (min-width: 1200px) {
  .content--topics .content__list .listItem .listItem__caption {
    padding-left: 0;
  }
}
body.home .content__list .listItem.is_sticky .listItem__title:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 0;
  padding-top: 1.5rem;
  background: url("../img/icon_sticky.svg") no-repeat 50% 50%;
  background-size: 100% auto;
}
body.home .content__list .listItem.is_sticky .listItem__title span {
  flex: 1;
}
.content__list .listItemArea--card {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  row-gap: 40px;
}
@media screen and (min-width: 1200px) {
  .content__list .listItemArea--card {
    gap: 20px;
    row-gap: 60px;
  }
}
.content__list .listItemArea--card .listItem--card {
  width: calc((100% - 10px) / 2);
}
@media screen and (min-width: 768px) {
  .content__list .listItemArea--card .listItem--card {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (min-width: 1200px) {
  .content__list .listItemArea--card .listItem--card {
    width: calc((100% - 60px) / 4);
  }
}
.content__list .listItemArea--card .listItem--card > a {
  display: block;
  text-decoration: none;
}
@media screen and (hover: hover) {
  .content__list .listItemArea--card .listItem--card > a {
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .content__list .listItemArea--card .listItem--card > a:hover {
    opacity: 0.6;
  }
}
.content__list .listItemArea--card .listItem--card .listItem__inner001,
.content__list .listItemArea--card .listItem--card .listItem__inner002,
.content__list .listItemArea--card .listItem--card .listItem__inner003 {
  display: block;
}
.content__list .listItemArea--card .listItem--card .listItem__img {
  display: block;
  background: rgb(65, 65, 65);
}
.content__list .listItemArea--card .listItem--card .listItem__img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.content__list .listItemArea--card .listItem--card .listItem__title {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.5rem;
}
.content__list .listItemArea--card .listItem--card .listItem__ctg {
  display: inline-block;
  background: rgb(65, 65, 65);
  font-size: 0.75rem;
  font-weight: normal;
  color: #f0f0f0;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0.25em 0.5em 0.1875em;
}
.content__list .listItemArea--card .listItem--card .listItem__ctg + .listItem__ctg {
  margin-left: 0.5em;
}
.content__list .listItemArea--card .listItem--card .listItem__caption {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.content__list .listItemArea--card .listItem--card .listItem__caption p {
  margin: 0;
}
.content__list .listItemArea--card .listItem--card .listItem__link {
  margin-top: 0.5rem;
}
.content__list .listItemArea--card .listItem--card .listItem__link a {
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: unset;
  height: 30px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: 1px solid rgb(207, 207, 207);
  background-color: rgba(0, 0, 0, 0);
  padding: 8px;
  opacity: 1;
  overflow: hidden;
  vertical-align: top;
}
@media screen and (hover: hover) {
  .content__list .listItemArea--card .listItem--card .listItem__link a {
    transition: background-color 0.2s ease-out;
  }
  .content__list .listItemArea--card .listItem--card .listItem__link a:hover {
    background-color: rgb(65, 65, 65);
  }
}
.content__list.--1-1 .listItemArea--card .listItem--card .listItem__img img {
  aspect-ratio: 1/1;
}
.content__list.--16-9 .listItemArea--card .listItem--card .listItem__img img {
  aspect-ratio: 16/9;
}
.content__list.--contain .listItemArea--card .listItem--card .listItem__img img {
  object-fit: contain;
}

.works__section + .works__section {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .works__section + .works__section {
    margin-top: 60px;
  }
}

.content__moreBtn-wrapper + .works__section {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .content__moreBtn-wrapper + .works__section {
    margin-top: 60px;
  }
}

.works__list {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.media__section + .media__section {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .media__section + .media__section {
    margin-top: 60px;
  }
}

.content__moreBtn-wrapper + .media__section {
  margin-top: 40px;
}
@media screen and (min-width: 1200px) {
  .content__moreBtn-wrapper + .media__section {
    margin-top: 60px;
  }
}

.media__list {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.ec__list {
  margin-bottom: 2rem;
}

.content__moreBtn-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  padding: 0 10px;
  margin-top: 80px;
}
body.home .content__moreBtn-wrapper {
  margin-top: 20px;
}
.article__box + .content__moreBtn-wrapper, body.home .about__profileLink + .content__moreBtn-wrapper, body.home .company__area + .content__moreBtn-wrapper {
  margin-top: 40px;
}

.content__moreBtn {
  width: 100%;
  max-width: 280px;
}
.content__moreBtn a {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 40px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: 1px solid rgb(207, 207, 207);
  background-color: rgba(0, 0, 0, 0);
  padding: 8px;
  opacity: 1;
  overflow: hidden;
}
@media screen and (hover: hover) {
  .content__moreBtn a {
    transition: background-color 0.2s ease-out;
  }
  .content__moreBtn a:hover {
    background-color: rgb(65, 65, 65);
  }
}
.content__moreBtn a span {
  display: block;
}
@media screen and (min-width: 1200px) {
  .content__moreBtn a span {
    display: inline-block;
    vertical-align: middle;
  }
}
.content__moreBtn a span + span {
  margin-top: 0.25em;
  font-size: 0.625em;
  font-weight: normal;
}
@media screen and (min-width: 1200px) {
  .content__moreBtn a span + span {
    margin-top: 0;
    font-size: 0.75em;
  }
}
@media screen and (min-width: 1200px) {
  .content__moreBtn a span + span:before {
    content: "-";
    display: inline-block;
    margin: 0.5em;
  }
}

.content__moreBtn + .content__moreBtn {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .content__moreBtn + .content__moreBtn {
    margin-top: 0;
  }
}

.content__moreBtn a[href$=".pdf"] {
  flex-direction: row;
}
.content__moreBtn a[href$=".pdf"]::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0;
  padding-top: 1.5rem;
  margin-right: 0.4rem;
  background: url(../img/icon-pdf.svg) no-repeat 50% 0;
  background-size: 100% auto;
}

.article__content .wp-block-embed-youtube .wp-block-embed__wrapper {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.article__content .wp-block-embed-youtube .wp-block-embed__wrapper:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: 4px solid rgb(207, 207, 207);
  border-radius: 50%;
  border-right-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: loader 1.401s linear infinite;
}

.iframe_wrap.size-16-9 iframe,
.embed-wrapper--youtube16-9 iframe,
.article__content .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

figure.wp-block-embed.wp-block-embed-twitter {
  max-width: 500px;
}

.article__content figcaption.wp-element-caption {
  text-align: left;
  font-style: italic;
  font-size: 0.8em;
}

.layout-firstview {
  display: block;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .layout-firstview {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }
}

.content--heroimage {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .content--heroimage {
    margin-bottom: 20px;
    flex: 1;
  }
}
@media screen and (min-width: 1200px) {
  .content--heroimage {
    max-width: 1135px;
  }
}

.heroimage__photo {
  position: relative;
  z-index: 0;
}
.heroimage__photo img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.heroimage__title {
  position: absolute;
  top: unset;
  left: 0;
  bottom: 0;
  z-index: 1;
  transition: padding 0.2s ease;
}
@media screen and (min-width: 768px) {
  .heroimage__title {
    position: unset;
    padding-top: 5px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .heroimage__title {
    position: absolute;
    top: 0;
    left: 0;
    bottom: unset;
    padding-left: 140px;
  }
}
.heroimage__title h1 {
  margin: 0;
  font-size: 1rem;
  font-weight: unset;
  text-shadow: 0 0 1rem #000;
  padding: 6.4vw 20px;
  transition: padding 0.2s ease;
}
@media screen and (min-width: 768px) {
  .heroimage__title h1 {
    padding: min(32px, 3.2vw) 20px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .heroimage__title h1 {
    padding: 20px;
  }
}
.heroimage__title h1 span {
  display: block;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1;
  transition: font-size 0.2s ease;
}
.heroimage__title h1 span + span {
  margin-top: min(0.5rem, 1vw);
}
.heroimage__title h1 span.heroimage__title001 {
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .heroimage__title h1 span.heroimage__title001 {
    font-size: min(2rem, 4.1666666667vw);
  }
}
@media screen and (min-width: 1200px) {
  .heroimage__title h1 span.heroimage__title001 {
    font-size: clamp(2rem, 0.5rem + 2vw, 2.5rem);
  }
}
.heroimage__title h1 span.heroimage__title002 {
  font-size: 12.8vw;
}
@media screen and (min-width: 768px) {
  .heroimage__title h1 span.heroimage__title002 {
    font-size: min(4.5rem, 10.6194690265vw);
  }
}
@media screen and (min-width: 1200px) {
  .heroimage__title h1 span.heroimage__title002 {
    font-size: clamp(4rem, -2rem + 8vw, 6rem);
  }
}

.content--contact-firstview {
  padding: 10px 20px;
}
@media screen and (min-width: 768px) {
  .content--contact-firstview {
    width: min(30%, 465px);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    background: rgba(17, 17, 17, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
}
@media screen and (min-width: 1200px) {
  .content--contact-firstview {
    position: unset;
  }
}

@media screen and (min-width: 1200px) {
  .about__profile {
    display: flex;
    flex-direction: row-reverse;
  }
}

.about__profilePhoto {
  width: 56.338%;
  margin-bottom: 20px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .about__profilePhoto {
    width: 40%;
    max-width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .about__profilePhoto {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .about__inner001 {
    flex: 1;
    padding-right: 10px;
    position: relative;
  }
}

.about__profileLink {
  margin-top: 20px;
}
@media screen and (min-width: 1200px) {
  .about__profileLink {
    margin-top: 30px;
  }
}
.about__profileLink ul, .about__profileLink li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.about__profileLink ul {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding-left: 0 !important;
}
.about__profileLink li a {
  display: block;
  width: 40px;
  height: 0;
  padding-top: 40px;
  color: transparent;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-color: #fff;
  border-radius: 999px;
  cursor: pointer;
}
@media screen and (hover: hover) {
  .about__profileLink li a {
    transition: opacity 0.3s ease-in;
  }
}
@media screen and (hover: hover) {
  .about__profileLink li a:hover {
    opacity: 0.6;
  }
}
.about__profileLink li.twitter a {
  background-image: url(../img/sns_logo-x.svg);
  background-size: 55% auto;
}
.about__profileLink li.instagram a {
  background-image: url(../img/sns_logo-instagram.svg);
  background-size: 60% auto;
}

/*Twitch */
.twitch__area {
  padding: 0 10px;
}

.twitch__embed {
  margin-bottom: 1rem;
}
.twitch__embed iframe {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 16/9;
  border: 0 transparent;
}

.twitch__the_content {
  font-size: 1rem;
  line-height: 1.8;
}
.twitch__the_content p + p {
  padding-top: 1em;
}

/*Company */
.company__area {
  padding: 0 10px;
}

.company__the_content {
  font-size: 1rem;
  line-height: 1.8;
}
.company__the_content p + p {
  padding-top: 1em;
}

/*Contact */
.contact__area {
  padding: 0 10px;
}

.contact__the_content {
  font-size: 1rem;
  line-height: 1.8;
}

.contact__list {
  width: 100%;
  max-width: 800px;
  margin: 0;
}
.contact__list dt {
  margin: 0 0 0.5rem;
}
.contact__list dd {
  margin: 0;
}
.contact__list dd + dt {
  margin-top: 1rem;
}
.contact__list .required {
  display: inline-block;
  background: rgb(65, 65, 65);
  font-size: 0.625rem;
  font-weight: normal;
  color: #f0f0f0;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
}
@media screen and (min-width: 1200px) {
  .contact__list .required {
    font-size: 0.75rem;
  }
}
.contact__list p {
  margin: 0;
}

/* Contact Form 7 */
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=number],
.wpcf7 form select,
.wpcf7 form textarea {
  display: block;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  width: 100%;
  border: 0 transparent;
  border-radius: 0;
  background: #fff;
  margin: 0;
  padding: 5px;
}

.wpcf7 form input[type=number] {
  width: unset;
}

.wpcf7 form select {
  position: relative;
  cursor: pointer;
  background: #fff url(../img/icon-select-ui.svg) no-repeat 100% 50%;
  background-size: 26px auto;
  padding-right: 26px;
}

.wpcf7 form textarea {
  height: 300px;
}
.layout-firstview .wpcf7 form textarea {
  height: 160px;
}

.contact__turnstile {
  text-align: left;
  margin-top: 1rem;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #555 #222;
}
.contact__turnstile::-webkit-scrollbar {
  height: 8px;
}
.contact__turnstile::-webkit-scrollbar-track {
  background: #222;
}
.contact__turnstile::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 4px;
}
.contact__turnstile::-webkit-scrollbar-thumb:hover {
  background: #777;
}

.contact__btn {
  margin-top: 1rem;
}
.contact__btn .wpcf7-spinner {
  margin-top: 2em;
}
.contact__btn .wpcf7-spinner:empty {
  display: none;
}
.contact__btn p {
  margin: 0;
}

html.style_qsiYcOqvQaW5 .wpcf7 form input.wpcf7-form-control.wpcf7-submit {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  max-width: 280px;
  height: 40px;
  background: transparent;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #f0f0f0;
  line-height: 1;
  text-align: center;
  border: 1px solid rgb(207, 207, 207);
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  padding: 8px;
  opacity: 1;
  cursor: pointer;
}
@media screen and (hover: hover) {
  html.style_qsiYcOqvQaW5 .wpcf7 form input.wpcf7-form-control.wpcf7-submit {
    transition: background-color 0.2s ease-out;
  }
  html.style_qsiYcOqvQaW5 .wpcf7 form input.wpcf7-form-control.wpcf7-submit:hover {
    background-color: rgb(65, 65, 65);
  }
}
html.style_qsiYcOqvQaW5 .wpcf7 form .ajax-loader {
  margin: 10px auto 0;
  display: block;
}
html.style_qsiYcOqvQaW5 .wpcf7 form .wpcf7-not-valid-tip {
  color: #ffe251;
  padding: 0 5px;
  margin: 0;
}
html.style_qsiYcOqvQaW5 .wpcf7 form .wpcf7-not-valid-tip:before {
  content: "※";
}
html.style_qsiYcOqvQaW5 .wpcf7 form .wpcf7-response-output {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  border: 1px solid transparent;
  padding: 0.5rem;
  max-width: 800px;
}
html.style_qsiYcOqvQaW5 .wpcf7 form .wpcf7-response-output:empty {
  display: none;
}
html.style_qsiYcOqvQaW5 .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}
html.style_qsiYcOqvQaW5 .wpcf7 form.failed .wpcf7-response-output,
html.style_qsiYcOqvQaW5 .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
}
html.style_qsiYcOqvQaW5 .wpcf7 form.spam .wpcf7-response-output {
  border-color: #828282;
}
html.style_qsiYcOqvQaW5 .wpcf7 form.invalid .wpcf7-response-output,
html.style_qsiYcOqvQaW5 .wpcf7 form.unaccepted .wpcf7-response-output,
html.style_qsiYcOqvQaW5 .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}
html.style_qsiYcOqvQaW5 .wpcf7 form input[type=text].wpcf7-not-valid,
html.style_qsiYcOqvQaW5 .wpcf7 form input[type=email].wpcf7-not-valid,
html.style_qsiYcOqvQaW5 .wpcf7 form textarea.wpcf7-not-valid {
  box-shadow: 0 0 0px rgb(255, 255, 255);
  animation: form_not_valid 2s linear 0s 3 alternate;
}
html.style_qsiYcOqvQaW5 .wpcf7 .screen-reader-response {
  height: 0;
  color: transparent;
  overflow: hidden;
}

@keyframes form_not_valid {
  0% {
    box-shadow: 0 0 0px rgb(255, 255, 255);
  }
  50% {
    box-shadow: 0 0 15px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0px rgb(255, 255, 255);
  }
}
.article__box {
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 10px;
}

.article__title {
  font-size: 1.25rem;
  line-height: 1.25;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  font-weight: 800;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .article__title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .article__title {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.article__title h1,
.article__title h2 {
  font-size: 1em;
  margin: 0;
}
.article__title h1 {
  font-size: 1em;
}
.article__title h2 {
  font-size: 1.125em;
}
.article__title a {
  text-decoration: none;
}

.article__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: calc(5px + 0.5rem);
}
@media screen and (min-width: 1200px) {
  .article__status {
    margin-bottom: calc(5px + 0.5rem);
  }
}

.article__ctg {
  display: inline-block;
  min-width: 100px;
  background: rgb(65, 65, 65);
  font-size: 0.625rem;
  font-weight: normal;
  color: #f0f0f0;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 1em;
}
@media screen and (min-width: 1200px) {
  .article__ctg {
    font-size: 0.75rem;
  }
}

.article__ctg + .article__date {
  margin-left: 1em;
}

.article__date {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: normal;
  color: #f0f0f0;
}
@media screen and (min-width: 1200px) {
  .article__date {
    font-size: 0.875rem;
  }
}

.article__content *:first-child {
  margin-top: 0;
}
.article__content .embed-wrapper--youtube16-9 {
  margin-bottom: 1em;
}
.article__content ul,
.article__content ol {
  padding-left: 1.5em;
}
.article__content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.75em;
  margin-bottom: 1rem;
}
.article__content h3 {
  font-size: 1.17rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content h4 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content strong {
  font-weight: bold;
}
.article__content em {
  font-style: italic;
}
.article__content del {
  text-decoration: line-through;
}
.article__content blockquote {
  display: block;
  margin: 1em 0;
  padding: 1em;
  border: 1px solid rgb(207, 207, 207);
}
.article__content blockquote cite {
  display: block;
  font-size: 0.75em;
  line-height: 1.5;
  margin-top: 0.5em;
}
.article__content blockquote cite a {
  color: #ddd !important;
}
.article__content .item__note {
  border: 1px solid #ddd;
  padding: 8px;
}
.article__content .wp-block-columns .wp-block-column *:last-child {
  margin-bottom: 0;
}
.article__content figure.wp-block-image {
  position: relative;
}
.article__content figure.wp-block-image img {
  position: relative;
  z-index: 0;
}
.article__content figure.wp-block-image figcaption.wp-element-caption {
  position: relative;
  margin: 0;
  padding: 0.5em;
  background: transparent;
  text-align: left;
}

:root :where(.wp-block-button .wp-block-button__link) {
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  min-width: 280px;
  height: 40px !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  color: #f0f0f0 !important;
  line-height: 1;
  text-align: center;
  border: 1px solid rgb(207, 207, 207) !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0);
  padding: 8px !important;
  opacity: 1;
  overflow: hidden;
}
@media screen and (hover: hover) {
  :root :where(.wp-block-button .wp-block-button__link) {
    transition: background-color 0.2s ease-out;
  }
  :root :where(.wp-block-button .wp-block-button__link):hover {
    background-color: rgb(65, 65, 65);
  }
}

/* ------------------- */
/* 投稿埋め込み */
/* カスタム埋め込み */
.wp-embed.nlink-card {
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  line-height: 1.5;
  color: #444;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: auto;
  zoom: 1;
  border: 1px solid #ddd;
  width: 100%;
  max-width: 500px;
  background-color: #fff;
  color: #8c8f94;
  padding: 16px 20px;
  margin: 1em 0;
}
.wp-embed.nlink-card a,
.wp-embed.nlink-card a > * {
  color: #82878c;
  text-decoration: none;
}
.wp-embed.nlink-card a:hover {
  text-decoration: underline;
}
.wp-embed.nlink-card .wp-embed-featured-image {
  margin-bottom: 20px;
}
.wp-embed.nlink-card .wp-embed-featured-image img {
  width: 100%;
  height: auto;
  border: none;
}
.wp-embed.nlink-card .wp-embed-featured-image.square {
  float: left;
  width: 50%;
  max-width: 160px;
  margin-right: 20px;
}
.wp-embed.nlink-card .wp-embedp {
  margin: -0.25em 0 0;
  line-height: 1.5;
  color: #444;
}
.wp-embed.nlink-card p.wp-embed-heading {
  margin: 0 0 15px;
  padding: 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
}
.wp-embed.nlink-card .wp-embed-heading a {
  color: #444;
}
.wp-embed.nlink-card .wp-embed.wp-embed-more {
  color: #444;
  text-decoration: underline;
}
.wp-embed.nlink-card .wp-embed-footer {
  display: table;
  width: 100%;
  margin-top: 10px;
}
.wp-embed.nlink-card .wp-embed-site-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 25px;
  width: 25px;
  border: 0;
}
.wp-embed.nlink-card .wp-embed-site-title {
  font-weight: 600;
  line-height: 1.78571428;
}
.wp-embed.nlink-card .wp-embed-site-title a {
  position: relative;
  display: inline-block;
  padding-left: 35px;
}
.wp-embed.nlink-card .wp-embed.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.wp-embed.nlink-card .wp-embed-featured-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.2%;
  overflow: hidden;
}
.wp-embed.nlink-card .wp-embed-featured-image > a {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* ------------------- */
.article__content + .content__moreBtn-wrapper {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .article__content + .content__moreBtn-wrapper {
    margin-top: 10px;
  }
}

/* ------------------- */
.navigation.pagination {
  margin-top: 40px;
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 1200px) {
  .navigation.pagination {
    margin-top: 60px;
  }
}
.navigation.pagination h2.screen-reader-text {
  display: none;
  color: transparent;
}
.navigation.pagination .nav-links {
  display: flex;
  gap: 1rem;
}
.navigation.pagination .nav-links .page-numbers {
  display: none;
}
.navigation.pagination .nav-links .prev.page-numbers,
.navigation.pagination .nav-links .next.page-numbers {
  display: inline-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  max-width: 100px;
  height: 30px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  border: 1px solid rgb(207, 207, 207);
  background-color: rgba(0, 0, 0, 0);
  padding: 8px;
  opacity: 1;
  overflow: hidden;
}
@media screen and (hover: hover) {
  .navigation.pagination .nav-links .prev.page-numbers,
  .navigation.pagination .nav-links .next.page-numbers {
    transition: background-color 0.2s ease-out;
  }
  .navigation.pagination .nav-links .prev.page-numbers:hover,
  .navigation.pagination .nav-links .next.page-numbers:hover {
    background-color: rgb(65, 65, 65);
  }
}

/* ------------------- */
/* 404 */
.error404__info {
  padding: 0 10px;
}

/* footer */
.footer__inner {
  width: 100%;
  padding: calc(1rem + 10px);
}

.footer__copyright {
  font-size: 0.75rem;
  text-align: left;
}

/* admin */
html.style_qsiYcOqvQaW5 {
  margin-top: 0 !important;
}

@media screen and (max-width: 782px) {
  html.style_qsiYcOqvQaW5 {
    margin-top: 0 !important;
  }
  html.style_qsiYcOqvQaW5 #wpadminbar {
    top: -40px !important;
  }
}
#wpadminbar {
  background: #b854ff !important;
  top: -26px !important;
  transition: top linear 0.1s;
}

#wpadminbar:hover {
  background: #23282d !important;
  top: 0 !important;
}

/* /admin */