@charset "UTF-8";
:root {
  --screen-height:100vh;
  --screen-width:0;
}

@counter-style middle-dot {
  system: cyclic;
  symbols: ・;
  suffix: " ";
  fallback: disc;
}
.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*********************************************************************
 * Hover Scale系.
 *********************************************************************/
@keyframes hover-scale {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  30% {
    transform: scale(0.95, 0.95) translate(0, 0);
  }
}
@keyframes hover-scale-small {
  0%, 50%, 70% {
    transform: scale(1, 1) translate(0, 0);
  }
  10% {
    transform: scale(1.01, 1.01) translate(0, 0);
  }
  30% {
    transform: scale(0.99, 0.99) translate(0, 0);
  }
}
@keyframes pin-fall {
  0% {
    opacity: 0;
    transform: translateY(-40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes shadow-fall {
  0% {
    opacity: 0;
    transform: translateY(-15%) translateX(40%);
  }
  30% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  50% {
    opacity: 1;
    transform: translateY(-5%) translateX(15%);
  }
  60% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  70% {
    opacity: 1;
    transform: translateY(-3%) translateX(7%);
  }
  75% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0%);
  }
}
/*********************************************************************
 * Bounce系.
 *********************************************************************/
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(1.1, 0.9);
  }
  45% {
    opacity: 1;
    transform: translateY(-5%);
  }
  70% {
    opacity: 1;
    transform: translateY(5%) scale(1.05, 0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }
}
@keyframes bounce-shadow {
  0% {
    transform: translateX(0%) translateY(0%);
  }
  40% {
    transform: translateX(20%) translateY(-10%);
  }
  70% {
    transform: translateX(0%) translateY(0%);
  }
  80% {
    transform: translateX(0%) translateY(0%);
  }
  100% {
    transform: translateX(0%) translateY(0);
  }
}
@keyframes bounce-cloud {
  0% {
    transform: translateX(50%) scale(1.05);
  }
  50% {
    transform: translateX(50%) scale(1);
  }
  100% {
    transform: translateX(50%) scale(1.05);
  }
}
@keyframes bounce-char {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(5%) scale(1.1, 1);
    opacity: 1;
  }
  50% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes op-button-scale {
  0% {
    transform: translateY(50%) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10%) scale(1.1, 1.1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale {
  0% {
    transform: translateY(50px) scale(1, 1);
    opacity: 0;
  }
  20% {
    transform: translateY(-10px) scale(1, 1);
    opacity: 1;
  }
  35% {
    transform: translateY(0) scale(1, 1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes inview-scale-sp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes arrow-loop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  45% {
    transform: translateX(16px);
    opacity: 0;
  }
  46% {
    transform: translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes arrow-loop-vertical {
  0% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
  45% {
    transform: rotate(90deg) translateX(16px);
    opacity: 0;
  }
  46% {
    transform: rotate(90deg) translateX(-16px);
    opacity: 0;
  }
  100% {
    transform: rotate(90deg) translateX(0);
    opacity: 1;
  }
}
@keyframes raise-character {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes raise-character-svg {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}
div#wrapper {
  /************************************************************************
   * Article
   *************************************************************************/
}
div#wrapper article section:nth-child(n+2) {
  margin-top: 80px;
}
@media screen and (max-width: 743px) {
  div#wrapper article section:nth-child(n+2) {
    margin-top: 64px;
  }
}
div#wrapper article .btn {
  width: 400px;
  display: block;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 743px) {
  div#wrapper article .btn {
    width: 100%;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
div#wrapper article .btn a {
  height: 63px;
}
@media screen and (max-width: 743px) {
  div#wrapper article .btn a {
    height: 56px;
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 744px) {
  div#wrapper article .two-column {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
  }
  div#wrapper article .two-column > * {
    width: calc(50% - 0.5rem);
    box-sizing: border-box;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper article .two-column {
    margin-bottom: 0.5rem;
  }
  div#wrapper article .two-column > *:nth-child(n+2) {
    margin-top: 0.5rem;
  }
  div#wrapper article .two-column > *:has(h4) {
    margin-bottom: 40px;
  }
}
div#wrapper article .two-column.center {
  justify-content: center;
}
@media screen and (min-width: 744px) {
  div#wrapper article .two-column.center > *:nth-child(n+2) {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper article .two-column.center > *:nth-child(1) {
    margin-bottom: 0;
  }
  div#wrapper article .two-column.center > *:nth-child(n+2) {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 744px) {
  div#wrapper article .two-column .btn {
    width: 400px;
  }
}
@media screen and (max-width: 743px) {
  div#wrapper article .two-column .btn {
    width: 100%;
  }
}
div#wrapper article .two-column .btn a {
  height: 63px;
}
@media screen and (max-width: 743px) {
  div#wrapper article .two-column .btn a {
    padding: 7px;
    font-size: 1rem;
    height: 56px;
  }
}
div#wrapper article .category-date-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article .category-date-box {
    margin-bottom: 1rem;
  }
}
div#wrapper article .category-date-box p.category {
  margin-top: 0;
}
div#wrapper article .category-date-box time {
  font-size: 0.875rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article .category-date-box time {
    font-size: 12px;
  }
}
div#wrapper article h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 150%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article h1 {
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 1rem;
  }
}
div#wrapper article ul.tag-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
div#wrapper article ul.tag-list li:nth-child(n+2) {
  margin-left: 1rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article ul.tag-list li:nth-child(n+2) {
    margin-left: 0.75rem;
  }
}
div#wrapper article ul.tag-list li span {
  border-bottom: 1px solid #2D3234;
}
div#wrapper article h2.head {
  margin-top: 0;
  margin-bottom: 56px;
  font-size: 40px;
}
@media screen and (max-width: 743px) {
  div#wrapper article h2.head {
    margin-bottom: 40px;
    font-size: 28px;
  }
}
div#wrapper article h1.head-terms {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 56px;
}
@media screen and (max-width: 743px) {
  div#wrapper article h1.head-terms {
    margin-bottom: 40px;
    font-size: 24px;
  }
}
div#wrapper article h2 {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  line-height: 120%;
}
@media screen and (max-width: 743px) {
  div#wrapper article h2 {
    margin-bottom: 1rem;
    line-height: 130%;
  }
}
div#wrapper article h2.no-margin-top {
  margin-top: 0;
}
div#wrapper article h2.head {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article h2.head {
    margin-bottom: 1rem;
  }
}
div#wrapper article h2 span.num {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  transform: translateY(2px);
}
@media screen and (max-width: 743px) {
  div#wrapper article h2 span.num {
    font-size: 24px;
    line-height: 1;
    transform: translateY(5px);
  }
}
div#wrapper article h2 span.label {
  font-size: 2rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article h2 span.label {
    font-size: 20px;
    line-height: 150%;
  }
}
div#wrapper article h3 {
  margin-bottom: 1.5rem;
  background-color: #009AB6;
  border-radius: 0.5rem;
  padding-left: 0.75rem;
  height: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 743px) {
  div#wrapper article h3 {
    border-radius: 0.25rem;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
    height: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
div#wrapper article h3 span.label {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 743px) {
  div#wrapper article h3 span.label {
    font-size: 1.125rem;
  }
}
div#wrapper article h4 {
  display: flex;
  align-items: center;
  line-height: 180%;
  margin-bottom: 1.5rem;
  line-height: 130%;
}
@media screen and (max-width: 743px) {
  div#wrapper article h4 {
    margin-bottom: 1rem;
  }
}
div#wrapper article h4::before {
  content: "";
  mask: url("../img/common/icon/water-icon.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 16px;
  height: 16px;
  background-color: black;
  background-color: #009AB6;
  margin-right: 0.7rem;
  flex-shrink: 0;
}
div#wrapper article h4 span.label {
  color: #009AB6;
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article h4 span.label {
    font-size: 1.125rem;
  }
}
div#wrapper article .num-list-box {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 743px) {
  div#wrapper article .num-list-box {
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
div#wrapper article .num-list-box ul li {
  display: flex;
  align-items: center;
  height: 29px;
}
@media screen and (max-width: 743px) {
  div#wrapper article .num-list-box ul li {
    height: 42px;
  }
}
div#wrapper article .num-list-box ul li:nth-child(n+2) {
  margin-top: 12px;
}
@media screen and (max-width: 743px) {
  div#wrapper article .num-list-box ul li:nth-child(n+2) {
    margin-top: 0.75rem;
  }
}
div#wrapper article .num-list-box ul li span.num {
  width: 2.5rem;
  font-size: 2rem;
  color: #009AB6;
  margin-right: 12px;
  flex-shrink: 0;
  text-align: center;
}
@media screen and (max-width: 743px) {
  div#wrapper article .num-list-box ul li span.num {
    font-size: 24px;
    margin-right: 0.5rem;
  }
}
div#wrapper article .num-list-box ul li span.label {
  width: 100%;
}
div#wrapper article .num-list-box ul li span.label a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #2D3234;
  font-weight: bold;
  line-height: 150%;
  transition: color 0.3s;
}
div#wrapper article .num-list-box ul li span.label a:hover {
  color: #009AB6;
}
@media screen and (max-width: 743px) {
  div#wrapper article .num-list-box ul li span.label a {
    font-size: 0.875rem;
  }
}
div#wrapper article p.body {
  line-height: 200%;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article p.body {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
div#wrapper article figure.article-image {
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article figure.article-image {
    margin-bottom: 1rem;
  }
}
div#wrapper article figure.article-image img {
  border-radius: 0.75rem;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
}
div#wrapper article figure.article-image.kv img {
  aspect-ratio: 389/247;
}
div#wrapper article figure.article-image p.caption {
  margin-top: 0.5rem;
}
div#wrapper article figure.article-image p.caption span {
  font-size: 0.75rem;
}
div#wrapper article .text-box {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article .text-box {
    padding: 1rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
}
div#wrapper article .text-box p {
  font-weight: bold;
  line-height: 180%;
}
@media screen and (max-width: 743px) {
  div#wrapper article .text-box p {
    font-size: 0.875rem;
  }
}
div#wrapper article .text-box ul.circle, div#wrapper article .text-box ul.digit {
  padding-left: 1rem;
  line-height: 150%;
}
div#wrapper article .text-box ul.circle li, div#wrapper article .text-box ul.digit li {
  position: relative;
}
div#wrapper article .text-box ul.circle li:nth-child(n+2), div#wrapper article .text-box ul.digit li:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article .text-box ul.circle li, div#wrapper article .text-box ul.digit li {
    font-size: 0.875rem;
  }
}
div#wrapper article .text-box ul.circle li a, div#wrapper article .text-box ul.digit li a {
  color: #009AB6;
  transition: color 0.3s;
}
div#wrapper article .text-box ul.circle li a:hover, div#wrapper article .text-box ul.digit li a:hover {
  color: #0AAFD4;
}
div#wrapper article .text-box ul.circle {
  list-style: middle-dot;
}
div#wrapper article .text-box ul.digit {
  list-style-type: decimal;
}
div#wrapper article a.text-link {
  color: #009AB6;
  text-decoration: none;
}
div#wrapper article a.text-link span {
  border-bottom: 1px solid #009AB6;
}
div#wrapper article a.text-link:hover span {
  border-bottom: 1px solid transparent;
}
div#wrapper article .author-box {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 743px) {
  div#wrapper article .author-box {
    padding: 1rem;
    border-radius: 0.75rem;
  }
}
div#wrapper article .author-box p.position {
  font-size: 0.75rem;
  line-height: 200%;
}
div#wrapper article .author-box p.name {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 180%;
}
div#wrapper article .author-box p.profile-body {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 150%;
}
div#wrapper article .author-box p.link {
  margin-top: 0.5rem;
}
div#wrapper article p.body + h3, div#wrapper article figure + h3 {
  margin-top: 40px;
}
@media screen and (max-width: 743px) {
  div#wrapper article p.body + h3, div#wrapper article figure + h3 {
    margin-top: 32px;
  }
}

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