/***** -- var -- *****/
:root {
  /* common */
  --line-height: 1.8;
  --color-1st: #006874;
  --color-1st-on: #ffffff;
  --color-1st-container: #9eeffd;
  --color-1st-container-on: #004f58;
  --color-2nd: #4a6267;
  --color-2nd-on: #ffffff;
  --color-2nd-container: #cde7ec;
  --color-2nd-container-on: #334b4f;
  --color-3rd: #525e7d;
  --color-3rd-on: #ffffff;
  --color-3rd-container: #dae2ff;
  --color-3rd-container-on: #3b4664;
  --color-surface: #f5fafb;
  --color-surface-on: #171d1e;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-low: #eff5f6;
  --color-surface-container: #e9eff0;
  --color-surface-container-high: #e3e9ea;
  --color-surface-container-highest: #dee3e5;
  --color-surface-inverse: #2b3133;
  --color-surface-inverse-on: #ecf2f3;
  --color-outline: #6f797b;
  --color-error: #ba1a1a;
  --color-error-on: #ffffff;
  --color-error-container: #ffdad6;
  --color-error-container-on: #93000a;
  /* local */
  --font-family-2nd: 'Permanent Marker';
  --header-height: 80px;
  --footer-bg-color: #333;
}
@media screen and (max-width: 1120px) {
  :root {
  }
}
@media screen and (max-width: 960px) {
  :root {
  }
}
@media screen and (max-width: 800px) {
  :root {
  }
}
@media screen and (max-width: 640px) {
  :root {
    --header-height: 64px;
  }
}
@media screen and (max-width: 480px) {
  :root {
  }
}

/***** -- Layout -- *****/
.l-wrap:last-of-type {
  padding-bottom: calc(var(--wrap-padding) * 3);
}

/***** -- Component -- *****/
/* heading */
@keyframes anim-subtitle-display {
  to {
    bottom: -1.5em;
    opacity: 1;
  }
}
.c-heading-svg {
  position: relative;
}
.c-heading-svg span {
  position: absolute;
  left: 0.25em;
  bottom: 0;
  font-size: 28px;
  opacity: 0;
  transition: bottom .5s ease, opacity .5s ease;
  z-index: 1;
}
.is-show .c-heading-svg span {
  animation: anim-subtitle-display 0.5s var(--subtitle-display-delay) forwards;
}
/* btn */
.c-btn--1st {
  color: #fff;
  background: linear-gradient(
    to right,
    #6ab6d7 0%,
    #73b9d0 13%,
    #8cc3bd 34%,
    #b6d39f 61%,
    #efe875 92%,
    #ffef6a 100%
  );
  border: none;
  border-radius: calc(var(--base) * 8);
}
@media screen and (max-width: 1120px) {
  .c-heading-svg span {
    font-size: calc(28 * var(--base-vw-coef));
  }
}
@media screen and (max-width: 960px) {
  .c-heading-svg span {
    font-size: calc(24 * var(--base-vw-coef));
  }
}
@media screen and (max-width: 800px) {
}
@media screen and (max-width: 640px) {
  .c-heading-svg span {
    font-size: calc(20 * var(--base-vw-coef));
  }
}
@media screen and (max-width: 480px) {
}

/***** -- module -- ******/
/* svg */
@keyframes anim-svg-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes anim-svg-maskoff {
  to {
    mask: none;
  }
}
.m-svg-mask > * {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.is-show .m-svg-mask > * {
  animation: anim-svg-draw 0.1s forwards;
}
.is-show .m-svg-text {
  animation: anim-svg-maskoff 0s var(--svg-maskoff-delay) forwards;
}

/***** -- Project -- *****/
/* ----- header ----- */
/* common */
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgb(255 255 255 / 80%);
  border-bottom: none;
}
.l-header .c-inner {
  width: 100%;
  max-width: 100%;
}
.l-header .p-header-logo {
  left: 16px;
  top: 16px;
  transform: translate(0, 0);
}
.l-header .p-header-menu {
  display: none;
}
.l-header .p-header-menu-icon,
.l-header .p-header-menu-icon::before,
.l-header .p-header-menu-icon::after {
  height: 2px;
  background-color: var(--color-surface-on);
}
/* local */
.l-header .p-header-logo img {
  width: 48px;
}
.l-header .p-header-link {
  position: absolute;
  right: calc(var(--base) * 4);
  top: 50%;
  translate: 0 -50%;
}
.l-header .p-header-link > .c-flex {
  gap: calc(var(--base) * 4);
}
.l-header .p-header-link a {
  color: var(--color-surface-on);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.l-header .p-header-button {
  display: none;
}
/* ----- drawer ----- */
/* common */
.l-drawer {
  display: none;
}
/* ----- footer ----- */
/* local */
.p-footer-logo img {
  width: 200px;
}
.p-footer-copy {
  margin-top: calc(16 * var(--base-vw-coef));
}
.p-footer-copy p {
  font-size: var(--font-size-xxs);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1120px) {
  /* ----- footer ----- */
  /* local */
  .p-footer-logo img {
    width: calc(200 * var(--base-vw-coef));
  }
}
@media screen and (max-width: 960px) {
  /* ----- header ----- */
  /* common */
  .l-header .p-header-menu {
    display: block;
  }
  /* local */
  .l-header .p-header-link {
    display: none;
  }
  /* ----- drawer ----- */
  /* common */
  .l-drawer {
    display: block;
  }
  /* local */
  .p-drawer-link {
    width: 50%;
    margin-inline: auto;
    padding-top: calc(96* var(--base-vw-coef));
  }
  .p-drawer-link a {
    font-size: calc(18 * var(--base-vw-coef));
    font-weight: 500;
  }
  .p-drawer-link > .c-flex > * {
    width: 100%;
    padding: 1.5em 0;
    text-align: center;
    border-bottom: 1px solid var(--color-surface-container);
  }
  .p-drawer-link > .c-flex > *:nth-of-type(1) {
    border-top: 1px solid var(--color-surface-container);
  }
  .p-drawer-button [class*="c-btn"] {
    font-size: calc(18* var(--base-vw-coef));
  }
  /* ----- footer ----- */
  /* local */
  .p-footer-logo img {
    width: calc(160 * var(--base-vw-coef));
  }
}
@media screen and (max-width: 800px) {
}
@media screen and (max-width: 640px) {
  /* ----- header ----- */
  /* common */
  .l-header .p-header-logo {
    left: 14px;
    top: 14px;
  }
  /* local */
  .l-header .p-header-logo img {
    width: 36px;
  }
  /* ----- drawer ----- */
  /* local */
  .p-drawer-link {
    width: 75%;
    padding-top: calc(80* var(--base-vw-coef));
  }
  .p-drawer-link a {
    font-size: calc(16 * var(--base-vw-coef));
  }
  .p-drawer-button [class*="c-btn"] {
    font-size: calc(16* var(--base-vw-coef));
  }
  /* ----- footer ----- */
  /* local */
  .p-footer-logo img {
    width: calc(128 * var(--base-vw-coef));
  }
}
@media screen and (max-width: 480px) {
}

/* newsList */
.p-newsList > .c-flex {
  padding: calc(var(--base) * 3) calc(var(--base) * 4);
  border-bottom: 1px solid #ededed;
}
.p-newsList > .c-flex:nth-of-type(1) {
  border-top: 1px solid #ededed;
}
.p-newsList-time {
  width: 9em;
}
.p-newsList-time p {
  font-size: var(--font-size-sm);
  line-height: 1;
}
.p-newsList-category {
  width: 7em;
  padding: calc(var(--base) * .75) 0;
  border: 2px solid;
}
.p-newsList-category p {
  font-size: var(--font-size-xs);
  line-height: 1;
  text-align: center;
}
.p-newsList-title {
  width: 100%;
  margin-top: calc(var(--base) * 2);
}
@media screen and (max-width: 960px) {
  .p-newsList-time {
    width: 8em;
  }
}
@media screen and (max-width: 640px) {
  .p-newsList > .c-flex {
    padding: calc(var(--base) * 3) calc(var(--base) * 3);
  }
}
