/* @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;
}

body {
  background: #ffffff;
  color: #333333;
  line-height: 1.6;
  overflow-wrap: break-word;
}

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

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

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

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

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

.container {
  width: 100%;
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 32px;
  overflow: hidden;
  transition: padding 0.3s ease-in;
}
@media screen and (min-width: 750px) {
  .container {
    padding-bottom: 64px;
  }
}
body:not(.home) .container {
  padding-top: 2rem;
}
@media screen and (min-width: 750px) {
  body:not(.home) .container {
    padding-top: 3rem;
  }
}

.content-group-002 {
  padding-right: 16px;
  padding-left: 16px;
}
@media screen and (min-width: 750px) {
  .content-group-002 {
    padding-right: 32px;
    padding-left: 32px;
  }
}

.content {
  margin-bottom: 4rem;
}

.about__podcast-title {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 750px) {
  .about__podcast-title {
    margin-top: 1.5rem;
  }
}
.about__podcast-title h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  letter-spacing: 0.01em;
  transition: font-size 0.2s ease-in, margin 0.2s ease-in;
}
@media screen and (min-width: 750px) {
  .about__podcast-title h1 {
    font-size: 2.625rem;
    text-align: center;
  }
}

.about__podcast-platform-season + .about__podcast-platform-season {
  margin-top: 2rem;
}

.about__podcast-platform-title {
  margin-bottom: 1rem;
}
.about__podcast-platform-title h2 {
  margin: 0;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about__podcast-platform-title h2 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}
.about__podcast-platform-title h2 small {
  display: inline-block;
  background: #D7F964;
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.25em 0.5em 0.45em;
}

.about__podcast-platform-list ul,
.about__podcast-platform-list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.about__podcast-platform-list ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 750px) {
  .about__podcast-platform-list ul {
    flex-direction: row;
  }
}
.about__podcast-platform-list li {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .about__podcast-platform-list li {
    width: unset;
    flex: 1;
  }
}
.about__podcast-platform-list li a {
  display: block;
  background: #D7F964;
  color: #333333;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .about__podcast-platform-list li a {
    transition: transform 0.3s ease-in;
    transform: scale(1);
  }
}
@media screen and (hover: hover) {
  .about__podcast-platform-list li a:hover {
    transform: scale(1.03);
  }
}
.about__podcast-platform-list li a span {
  display: inline-block;
}
.about__podcast-platform-list .button-spotify a {
  background-color: #1DB954;
  color: #ffffff;
}
.about__podcast-platform-list .button-apple a {
  background-color: #7224d8;
  color: #ffffff;
}
.about__podcast-platform-list .button-amazon a {
  background-color: #25d1da;
  color: #000000;
}
.about__podcast-platform-list .button-youtube a {
  background-color: #FF0000;
  color: #ffffff;
}

.about__mailform {
  margin-top: 4rem;
}

.about__mailform-title {
  margin-bottom: 0.5rem;
}
.about__mailform-title h2 {
  margin: 0;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about__mailform-title h2 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}

.about__mailform-button {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .about__mailform-button {
    max-width: min(400px, 50%);
  }
}
.about__mailform-button a {
  display: block;
  background: #D7F964;
  color: #333333;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .about__mailform-button a {
    transition: transform 0.3s ease-in;
    transform: scale(1);
  }
}
@media screen and (hover: hover) {
  .about__mailform-button a:hover {
    transform: scale(1.03);
  }
}
.about__mailform-button a span {
  display: inline-block;
}

.about__sns {
  margin-top: 4rem;
}

.about__sns-title {
  margin-bottom: 1rem;
}
.about__sns-title h2 {
  margin: 0;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.about__sns-title h2 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}

.about__sns-list ul,
.about__sns-list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.about__sns-list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 750px) {
  .about__sns-list ul {
    flex-direction: row;
  }
}
.about__sns-list li {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .about__sns-list li {
    width: unset;
    flex: 1;
    max-width: min(400px, 50%);
  }
}
.about__sns-list li a {
  display: block;
  background: #D7F964;
  color: #333333;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
}
@media screen and (hover: hover) {
  .about__sns-list li a {
    transition: transform 0.3s ease-in;
    transform: scale(1);
  }
}
@media screen and (hover: hover) {
  .about__sns-list li a:hover {
    transform: scale(1.03);
  }
}
.about__sns-list li a span {
  display: inline-block;
}
.about__sns-list .button-twitter a {
  background-color: #000000;
  color: #ffffff;
}

.home .content__title {
  margin-bottom: 0.5rem;
}
.home .content__title h2 {
  margin: 0;
  line-height: 1.3;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.home .content__title h2 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.2em;
}

.content--topics .content__list {
  padding: 0;
}
.content__list ul, .content__list li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.content__list .listItem {
  border-left: 0.5rem solid #D7F964;
}
.content__list .listItem a {
  display: inline-block;
  padding: 0.5rem 1rem 0.75rem;
  text-decoration: none;
  vertical-align: top;
}
@media screen and (hover: hover) {
  .content__list .listItem a {
    transition: background 0.3s ease-in;
    background: transparent;
  }
}
@media screen and (hover: hover) {
  .content__list .listItem a:hover {
    background: #EFFFB8;
  }
}
.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: 1000px) {
  .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-top: 0.25rem;
}
.content__list .listItem .listItem__ctg {
  display: inline-block;
  border: 1px solid #c5c5c5;
  font-size: 0.75rem;
  font-weight: normal;
  color: #333333;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.25em 0.5em 0.35em;
}
.content__list .listItem .listItem__ctg + .listItem__ctg {
  margin-left: 0.25em;
}
.content__list .listItem .listItem__date {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: normal;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.125em;
  margin-left: 0.5em;
}
.content__list .listItem .listItem__title {
  display: flex;
  align-items: flex-start;
  gap: 0.25em;
  font-size: 1.25rem;
  font-weight: 800;
  color: #333333;
  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: 750px) {
  .content__list .listItem .listItem__caption {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1000px) {
  .content__list .listItem .listItem__caption {
    font-size: 1rem;
    padding-left: 19px;
  }
}
@media screen and (min-width: 1000px) {
  .content--topics .content__list .listItem .listItem__caption {
    padding-left: 0;
  }
}
.content__list .listItem + .listItem {
  margin-top: 1rem;
}

.article__box {
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 16px;
}

.article__title {
  line-height: 1.3;
  font-family: "Noto Sans JP", -apple-system, sans-serif;
  border-bottom: 0.25rem solid #D7F964;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
}
.article__title h1,
.article__title h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}
.article__title a {
  text-decoration: none;
}

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

.article__ctg {
  display: inline-block;
  border: 1px solid #c5c5c5;
  font-size: 0.75rem;
  font-weight: normal;
  color: #333333;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.25em 0.5em 0.35em;
}

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

.article__date {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: normal;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.125em;
}

.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: 800;
  margin-top: 1.75em;
  margin-bottom: 1rem;
}
.article__content h3 {
  font-size: 1.17rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content h4 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content strong {
  font-weight: 800;
}
.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 #c5c5c5;
}
.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: 800;
  color: #333333 !important;
  line-height: 1;
  text-align: center;
  border: 1px solid #858585 !important;
  border-radius: 0 !important;
  font-size: 1rem !important;
  font-weight: 800;
  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: #EFFFB8;
  }
}

.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 #D7F964;
  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;
}

.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;
}

.article__protected_title-label {
  display: inline-block;
  width: 0.8em;
  height: 0;
  padding-top: 1em;
  overflow: hidden;
  color: transparent;
  vertical-align: top;
  background: url(../img/icon_protected.svg) no-repeat 0 0;
  background-size: auto 100%;
  margin-top: 0.25em;
  margin-right: 0.25em;
}
.article__title .article__protected_title-label {
  margin-top: 0.125em;
}

.article__protected-input {
  display: block;
  border: 1px solid #c5c5c5;
  border-radius: 8px;
  padding: 2rem 1rem;
  margin: 2rem auto !important;
  width: 100%;
  max-width: 750px;
}
.article__protected-input dt {
  margin-bottom: 0.75rem;
}
.article__protected-input dd {
  margin: 0;
}

.article__protected-input-password input {
  display: block;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  border: 1px solid #858585;
  border-radius: 0.25rem;
  margin: 0;
  padding: 0.5rem;
}

.article__protected-submitBtn {
  margin-top: 1rem;
  width: 100%;
  max-width: 150px;
}
.article__protected-submitBtn input {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  background: #D7F964;
  font-size: 1rem;
  font-weight: 800;
  color: #333333;
  line-height: 1;
  text-align: center;
  text-align: center;
  border: 0 transparent;
  border-radius: 9999px;
  cursor: pointer;
  position: relative;
}
@media screen and (hover: hover) {
  .article__protected-submitBtn input {
    transition: transform 0.3s ease-in;
    transform: scale(1);
  }
}
@media screen and (hover: hover) {
  .article__protected-submitBtn input:hover {
    transform: scale(1.03);
  }
}

.article__protected-error {
  background-color: #f9e564;
  padding: 0.25rem 0.5rem;
}

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

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

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

/* /admin */