/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
@font-face {
  font-family: "quentin";
  src: url("../fonts/Quentin.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
:root {
  --color-main: #21a59e;
  --color-main2: #47af5d;
  --color-main3: #e6df42;
  --color-gradient: linear-gradient(138deg,rgba(33, 165, 158, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
  --color-accent: #21a59e;
  --color-base: #f8f6ed;
  --color-white: #ffffff;
  --font-unique-en: "quentin", serrif;
}

/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
.t__min {
  font-family: serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
svg {
  fill: currentColor;
}

/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    KEYFRAME
  ------------------------------ */
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
  70% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes countDown {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@keyframes countDown {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@-webkit-keyframes rotateInf {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@keyframes rotateInf {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#__single {
  background: #f1f1f1;
}
@media screen and (min-width: 320px) {
  #__single main .inner {
    padding: 0rem 3% 5vw;
  }
}
@media screen and (min-width: 600px) {
  #__single main .inner {
    padding: 0rem 15% 8vw;
  }
}
#__single #articleContent {
  position: relative;
}
@media screen and (min-width: 320px) {
  #__single #articleContent.hasMv {
    margin-top: -3rem;
  }
}
@media screen and (min-width: 600px) {
  #__single #articleContent.hasMv {
    margin-top: -15rem;
  }
}
#__single #articleContent .articleContentInner {
  background: white;
}
@media screen and (min-width: 320px) {
  #__single #articleContent .articleContentInner {
    padding: 3rem 1.5rem;
    border-radius: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #__single #articleContent .articleContentInner {
    padding: 8rem;
    border-radius: 5rem;
  }
}
#__single #articleContent *:first-child {
  margin-top: 0 !important;
}
#__single #articleContent h2, #__single #articleContent h3, #__single #articleContent h4 {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.62;
}
#__single #articleContent h2 strong, #__single #articleContent h3 strong, #__single #articleContent h4 strong {
  font-size: inherit !important;
}
#__single #articleContent h2 {
  position: relative;
  font-weight: 700;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 320px) {
  #__single #articleContent h2 {
    font-size: 2rem;
    margin: 6rem 0 3rem;
    padding-bottom: 0.8rem;
  }
}
@media screen and (min-width: 600px) {
  #__single #articleContent h2 {
    font-size: 3.6rem;
    margin: 8rem 0 5rem;
    padding-bottom: 1rem;
  }
}
#__single #articleContent h2::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  height: 2px;
  background: var(--color-main);
}
@media screen and (min-width: 320px) {
  #__single #articleContent h2::before {
    width: 30px;
  }
}
@media screen and (min-width: 1025px) {
  #__single #articleContent h2::before {
    width: 40px;
  }
}
#__single #articleContent h3 {
  background: #f1f1f1;
  border-radius: 5rem;
}
@media screen and (min-width: 320px) {
  #__single #articleContent h3 {
    font-size: 1.6rem;
    padding: 1rem 2rem;
    margin: 3rem 0;
  }
}
@media screen and (min-width: 600px) {
  #__single #articleContent h3 {
    font-size: 2.4rem;
    padding: 1.2rem 3rem;
    margin: 5rem 0 3rem;
  }
}
#__single #articleContent h4 {
  position: relative;
  font-weight: 700;
  padding-left: 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 320px) {
  #__single #articleContent h4 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  #__single #articleContent h4 {
    font-size: 2rem;
  }
}
#__single #articleContent h4::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background: var(--color-main);
  border-radius: 3rem;
}
#__single #articleContent p {
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 320px) {
  #__single #articleContent p {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  #__single #articleContent p {
    font-size: 1.6rem;
  }
}
#__single #articleContent strong {
  font-weight: 700;
  font-size: 110%;
}
#__single #articleContent ul li::before {
  background: var(--color-main);
  border: none;
}
#__single #articleContent .wp-block-button__link {
  background: var(--color-main);
}

#ez-toc-container {
  border: none;
}
@media screen and (min-width: 320px) {
  #ez-toc-container {
    padding: 1.5rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 600px) {
  #ez-toc-container {
    padding: 3rem;
    border-radius: 3rem;
    margin-bottom: 3rem;
  }
}
#ez-toc-container .ez-toc-title-toggle {
  display: none;
}
#ez-toc-container li {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
#ez-toc-container li::before {
  display: none !important;
}
#ez-toc-container a {
  width: 100%;
}

#postMv .imgWrapper {
  border-radius: 0;
}
@media screen and (min-width: 320px) {
  #postMv .imgWrapper {
    padding-bottom: 60%;
  }
}
@media screen and (min-width: 600px) {
  #postMv .imgWrapper {
    padding-bottom: 35%;
  }
}/*# sourceMappingURL=article.css.map */