@charset "UTF-8";
/*------------------------------------*\
    Scroll
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap");
/* ===============================
   Root / Base
   =============================== */
html {
  position: relative;
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 667px) {
  html {
    font-size: 56.25%;
  }
}
@media screen and (max-width: 370px) {
  html {
    font-size: 52.5%;
  }
}

:root {
  scrollbar-gutter: stable both-edges;
}

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  display: block;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #111;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}

main {
  display: block;
  width: 100%;
  max-width: 100%;
}

/* ===============================
   Media / Elements
   =============================== */
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

.wp-block-image {
  margin: 0;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* ===============================
   Typography base
   =============================== */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

p,
ul,
ol,
table {
  margin: 0;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

strong,
.bold {
  font-weight: 900;
}

.t_a-c {
  text-align: center;
}

/* ===============================
   Links / Interactions
   =============================== */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}
a:hover {
  opacity: 0.85;
}
a:focus {
  outline: none;
}
a:focus-visible {
  outline: 2px solid rgba(0, 125, 250, 0.6);
  outline-offset: 2px;
}
a:hover, a:visited {
  color: inherit;
}

/* ===============================
   Reduced Motion
   =============================== */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.001ms !important;
            animation-duration: 0.001ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* ===============================
   Utilities (最小限の代替)
   =============================== */
.u-fz-xs {
  font-size: 1.2rem !important;
}

.u-fz-sm {
  font-size: 1.4rem !important;
}

.u-fz-md {
  font-size: 1.6rem !important;
}

.u-fz-lg {
  font-size: 1.8rem !important;
}

.u-fz-xl {
  font-size: 2rem !important;
}

/*------------------------------------*\
    Button
\*------------------------------------*/
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.9em 2em;
  border-radius: 9999px;
  border: 1px solid transparent;
  background: #0b6d50;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 736px) {
  .c-btn {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
  }
}

.c-btn:hover {
  background: #0e8964;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 109, 80, 0.25);
}

.c-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------------------------------------------------------
   Variations
--------------------------------------------------------- */
.c-btn--outline {
  background: transparent;
  border-color: #0b6d50;
  color: #0b6d50;
}
.c-btn--outline:hover {
  background: rgba(11, 109, 80, 0.08);
}

.c-btn--muted {
  background: #6b7280;
  color: #fff;
  border-color: transparent;
}
.c-btn--muted:hover {
  background: #5d636f;
}

.c-btn--block {
  display: flex;
  width: 100%;
}

.c-btn--sm {
  font-size: 0.875rem;
  padding: 0.6em 1.4em;
}

.c-btn--lg {
  font-size: 1.125rem;
  padding: 1.1em 2.4em;
}

/*------------------------------------*\
    card
\*------------------------------------*/
.c-card {
  display: grid;
  gap: 1rem;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  background: linear-gradient(131.31deg, rgba(237, 229, 229, 0.5) 0.61%, rgba(237, 229, 229, 0.3) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #FFFEFE;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 1px 0px #FFFFFF;
}
@media screen and (max-width: 736px) {
  .c-card {
    padding: 1rem;
  }
}

.c-card--featured {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/*------------------------------------*\
    section
\*------------------------------------*/
.c-section {
  position: relative;
  padding: 5rem 0;
  margin: 20rem auto;
  width: 1200px;
  max-width: 90%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0.61%, rgba(255, 255, 255, 0.1) 100%);
  padding: 7vh 20px 10vh;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media screen and (max-width: 1000px) {
  .c-section {
    margin: 10rem 2.5rem;
  }
}
.c-section::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgb(0, 0, 0) 50%, transparent 100%);
  position: absolute;
  bottom: -5em;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .c-section::after {
    display: none;
  }
}
.c-section:last-of-type::after {
  display: none;
}

.c-section__lead {
  color: #6b7280;
  max-width: 60ch;
}

.c-section-top__head {
  margin: auto;
  text-align: center;
  width: 1200px;
  max-width: 90%;
  margin-bottom: 1.5rem;
}

.c-section-top__head-main {
  font-size: clamp(2.5rem, 3rem + 1vw, 6rem);
}
.c-section-top__head-main span {
  white-space: nowrap;
}

.c-section-top__head-sub {
  display: inline-block;
}
.c-section-top__head-sub span {
  white-space: nowrap;
}

.c-form {
  max-width: 720px;
  margin: 0 auto;
}

.c-form__row {
  margin: 1.25rem 0;
}

.c-form__row--agree label,
.c-form__row--agree .mwform-checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.c-form__label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.c-form__req {
  font-size: 0.8em;
  color: #b33;
  margin-left: 0.4em;
}

.c-form input[type=text], .c-form input[type=email] {
  width: 100%;
  padding: 0.9em 1em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  background: #fff;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  font-size: 1rem;
}
.c-form textarea {
  width: 100%;
  padding: 0.9em 1em;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  background: #fff;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
  font-size: 1rem;
}
.c-form input[type=text]:focus, .c-form input[type=email]:focus {
  border-color: rgba(16, 90, 60, 0.35);
  box-shadow: 0 0 0 3px rgba(16, 90, 60, 0.08);
}
.c-form textarea {
  min-height: 160px;
  resize: vertical;
}
.c-form textarea:focus {
  border-color: rgba(16, 90, 60, 0.35);
  box-shadow: 0 0 0 3px rgba(16, 90, 60, 0.08);
}
.c-form .mwform-error {
  display: block;
  color: #b33;
  margin-top: 0.35rem;
  font-size: 0.9rem;
}

.c-form__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

/* =========================================================
   To Top Button（静止1＋周回2／正円キープ）
   ========================================================= */
:root {
  --tt-size: 56px;
  --tt-stroke: #111;
  --tt-text: #111;
  --tt-shadow: 0 8px 20px rgba(0, 0, 0, .10);
  --orbit-r1: calc(var(--tt-size) * .05);
  --orbit-r2: calc(var(--tt-size) * .10);
  --tt-grad: linear-gradient(135deg, #0B5E48, #5EC9B8);
}

/* グラデーションがゆらゆら動く */
@-webkit-keyframes tt-grad-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes tt-grad-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.to-top {
  position: fixed;
  right: 3vw;
  bottom: 3vw;
  width: var(--tt-size);
  height: var(--tt-size);
  border-radius: 50%;
  background: transparent;
  color: var(--tt-text);
  display: grid;
  place-items: center;
  text-decoration: none;
  font: 700 2rem/1 system-ui, -apple-system, "M PLUS 1", "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top__label {
  pointer-events: none;
  z-index: 3;
}

.to-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--tt-stroke);
  z-index: 1;
}

.to-top__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: 50% 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.to-top__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--tt-stroke);
  transform: translate(-50%, -50%) translateX(var(--orbit-radius));
}

.to-top__orbit--r1 {
  --orbit-radius: var(--orbit-r1);
}

.to-top__orbit--r2 {
  --orbit-radius: var(--orbit-r2);
}

@-webkit-keyframes orbit-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-cw {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes orbit-ccw {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes orbit-ccw {
  to {
    transform: rotate(-360deg);
  }
}
.to-top:hover .to-top__orbit {
  opacity: 1;
}

.to-top:hover .to-top__orbit--r1 {
  -webkit-animation: orbit-cw 1.2s linear infinite;
          animation: orbit-cw 1.2s linear infinite;
}

.to-top:hover .to-top__orbit--r2 {
  -webkit-animation: orbit-ccw 3s linear infinite;
          animation: orbit-ccw 3s linear infinite;
}

/* =========================================================
   PC：hover時のグラデーション＋ゆらゆらアニメ
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  .to-top:hover {
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }
  .to-top:hover .to-top__label {
    background: var(--tt-grad);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-animation: tt-grad-shift 3s ease-in-out infinite;
            animation: tt-grad-shift 3s ease-in-out infinite;
  }
  .to-top:hover::before {
    border-color: transparent;
    background: var(--tt-grad);
    background-size: 200% 200%;
    -webkit-animation: tt-grad-shift 3s ease-in-out infinite;
            animation: tt-grad-shift 3s ease-in-out infinite;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  }
  .to-top:hover .to-top__ring {
    border-color: transparent;
    background: var(--tt-grad);
    background-size: 200% 200%;
    -webkit-animation: tt-grad-shift 3s ease-in-out infinite;
            animation: tt-grad-shift 3s ease-in-out infinite;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  }
}
/* =========================================================
   スマホ：タップ中だけグラデで光る
   ========================================================= */
@media (hover: none) {
  .to-top:active .to-top__label {
    background: var(--tt-grad);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-animation: tt-grad-shift 2s ease-in-out infinite;
            animation: tt-grad-shift 2s ease-in-out infinite;
  }
  .to-top:active .to-top__ring {
    border-color: transparent;
    background: var(--tt-grad);
    background-size: 200% 200%;
    -webkit-animation: tt-grad-shift 2s ease-in-out infinite;
            animation: tt-grad-shift 2s ease-in-out infinite;
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  }
}
@media screen and (max-width: 667px) {
  :root {
    --tt-size: 48px;
    --orbit-r1: calc(var(--tt-size) * .10);
    --orbit-r2: calc(var(--tt-size) * .12);
  }
  .to-top {
    right: 12px;
    bottom: 12px;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .to-top,
.to-top__orbit,
.to-top__label,
.to-top__ring,
.to-top::before {
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
  .to-top:hover .to-top__orbit {
    opacity: 0.9;
  }
}
.scroll_down {
  position: absolute;
  bottom: 50px;
  right: 50%;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #000;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s ease-out infinite;
          animation: move 3s ease-out infinite;
}

.arrow:first-child {
  -webkit-animation: move 3s ease-out 1s infinite;
          animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  -webkit-animation: move 3s ease-out 2s infinite;
          animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
/*------------------------------------*\
    background
\*------------------------------------*/
.c-bg__glass {
  background: linear-gradient(131.31deg, rgba(237, 229, 229, 0.3) 0.61%, rgba(237, 229, 229, 0.1) 100%);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 0.5px solid #FFFEFE;
  border-radius: 30px;
  box-shadow: 0px 4px 4px rgba(87, 87, 87, 0.25), inset 0px 0.5px 0px #FFFFFF;
}
.c-bg__glass:hover {
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}

/*------------------------------------*\
    _tag.scss
\*------------------------------------*/
.c-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b6d50;
  background: rgba(11, 109, 80, 0.08);
  border: 1px solid rgba(11, 109, 80, 0.3);
  border-radius: 9999px;
  padding: 0.4em 1em;
  line-height: 1;
  cursor: default;
  transition: all 0.3s ease;
}
@media screen and (max-width: 736px) {
  .c-tag {
    font-size: 0.8rem;
    padding: 0.35em 0.9em;
  }
}
.c-tag--clickable {
  cursor: pointer;
}
.c-tag--clickable:hover {
  background: #0b6d50;
  color: #fff;
  border-color: transparent;
}
.c-tag--clickable:active {
  transform: scale(0.96);
}
.c-tag--active {
  background: #0b6d50;
  color: #fff;
  border-color: transparent;
}
.c-tag--muted {
  color: #6b7280;
  background: rgba(107, 114, 128, 0.08);
  border-color: rgba(107, 114, 128, 0.2);
}

/*------------------------------------*\
    reveal
\*------------------------------------*/
/* アニメ対象の子要素にちょっとだけ最適化 */
.reveal > *,
.reveal .reveal__item {
  will-change: transform, opacity;
}

/*------------------------------------*\
    components
\*------------------------------------*/ /* =========================================================
   common.scss
   ========================================================= */
.l-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 5rem);
  box-sizing: border-box;
}

/*------------------------------------*\
    Header
\*------------------------------------*/
header .h-top__menu-box {
  position: fixed;
  width: 100%;
  max-width: 100%;
  top: 0;
  z-index: 50;
}
header .h-top__menu-box .h-top__menu-list {
  display: flex;
  width: 100%;
  max-width: 100%;
  background-color: rgb(255, 255, 255);
}
header .h-top__menu-box .h-top__menu-list .h-top__logo {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 65px;
  padding-left: 20px;
}
@media screen and (max-width: 736px) {
  header .h-top__menu-box .h-top__menu-list .h-top__logo {
    max-width: calc(100% - 40px);
  }
}
header .h-top__menu-box .h-top__menu-list .h-top__logo img {
  width: 100%;
  max-width: 100%;
  height: 30px;
}
header .h-top__menu-box .h-top__menu-list ul {
  width: 100%;
  max-width: 1500px;
  min-width: 1000px;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 0;
  padding-right: 5%;
  display: flex;
  list-style: none;
  height: 60px;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1224px) {
  header .h-top__menu-box .h-top__menu-list ul {
    height: auto;
    display: none;
  }
}
header .h-top__menu-box .h-top__menu-list ul li {
  display: flex;
  text-align: center;
  z-index: 1;
  align-items: center;
  padding-right: 50px;
}
header .h-top__menu-box .h-top__menu-list ul li a {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
  font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS 明朝", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
header .h-top__menu-box .h-top__menu-list ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
header .h-top__menu-box .h-top__menu-list ul li a:hover {
  color: var(--color-accent, #0b5852);
}
header .h-top__menu-box .h-top__menu-list ul li a:hover::after {
  width: 100%;
}

/* =========================================================
   Drawer Nav（SP時）
========================================================= */
#navArea #globalnav ul li a img {
  height: auto;
}
@media screen and (max-width: 736px) {
  #navArea #globalnav ul li a img {
    height: 1.4em;
  }
}

/*動画背景*/
.video-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: #000;
}

.video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================================
   Navigation
   ========================================================= */
/* スクロールロック用 */
html.nav-open,
body.nav-open {
  overflow: hidden;
  /* PC/Android */
  height: 100%;
  touch-action: none;
  /* iOSでの意図しないスクロール軽減 */
}

.nav_icon {
  display: none;
  width: calc(100% - 80px);
  position: fixed;
  top: 0px;
  padding-top: 15px;
  padding-left: 22px;
  z-index: 31;
}
.nav_icon .h-top__logo {
  margin: 0 auto;
}

#globalnav {
  display: block;
  position: fixed;
  top: 0px;
  left: -100%;
  width: 400px;
  bottom: 0;
  padding-top: 100px;
  padding-left: 20px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 30;
  opacity: 0;
}
@media screen and (max-width: 736px) {
  #globalnav {
    width: calc(100% - 70px);
  }
}
#globalnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#globalnav ul li + li {
  padding-top: 30px;
}
#globalnav ul li {
  position: relative;
  margin: 0;
}
#globalnav ul li a {
  line-height: 1em;
  font-weight: 900;
  transition: all 0.5s;
  position: relative;
  display: inline-block;
  padding: 14px 16px;
  font-size: clamp(1.6rem, 1.2rem + 1vw, 1.8rem);
  text-decoration: none;
  /* ホバー対応端末なら hover も許可（PC/一部タブ） */
  /* 低刺激設定の人には移動を抑制 */
}
#globalnav ul li a:after {
  content: "";
  position: absolute;
  left: 16px;
  /* テキスト左と揃える */
  right: 16px;
  /* 右端も内側にすると品よく見える */
  bottom: 6px;
  /* 文字と線の距離 */
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}
#globalnav ul li a:focus-visible::after {
  transform: scaleX(1);
}
#globalnav ul li a .is-current::after {
  transform: scaleX(1);
}
#globalnav ul li a:active::after {
  transform: scaleX(1);
}
@media (hover: hover) and (pointer: fine) {
  #globalnav ul li a:hover::after {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  #globalnav ul li a::after {
    transition: none;
  }
}
#globalnav ul .c-top__contact-button {
  margin-top: 30px;
  text-align: center;
  font-weight: 900;
  border-bottom: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 10px 10px 0;
}
#globalnav ul .c-top__contact-button a {
  color: #FFFFFF;
}
#globalnav ul .none {
  position: relative;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#globalnav ul .none:after {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  content: "近日公開";
  font-size: 2rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
}

.open #globalnav {
  left: 0;
  opacity: 1;
}

.open .nav_icon {
  margin-top: 20px;
  display: none;
}

/*============
 .btn-trigger
=============*/
.btn-trigger {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 40px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 150;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 1224px) {
  .btn-trigger {
    display: block;
  }
}
.btn-trigger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: #000000;
  border-radius: 4px;
  transition: all 0.5s;
}
.btn-trigger span:nth-of-type(1) {
  top: 0px;
}
.btn-trigger span:nth-of-type(2) {
  top: 10px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 18px;
}
.btn-trigger p {
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  margin: 0;
  font-size: 1.1rem;
}

#btn19::after {
  position: absolute;
  top: -5px;
  right: -5px;
  display: block;
  content: "";
  width: 45px;
  height: 45px;
  margin: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  transition: all 0.75s;
}

#btn19.open:after {
  -webkit-animation: active-btn19 0.7s 0.25s forwards;
  animation: active-btn19 0.7s 0.25s forwards;
}
#btn19.open span {
  background-color: #000000;
  left: 0px;
}
#btn19.open span:nth-of-type(1) {
  top: 7px;
  transform: translateY(9px) rotate(-45deg);
}
#btn19.open span:nth-of-type(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn19-bar02 0.8s forwards;
  animation: active-btn19-bar02 0.8s forwards;
}
#btn19.open span:nth-of-type(3) {
  bottom: -8px;
  transform: translateY(-28px) rotate(45deg);
}
#btn19.open p {
  display: none;
}

@-webkit-keyframes active-btn19-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-btn19-bar02 {
  100% {
    height: 0;
  }
}
@-webkit-keyframes active-btn19 {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #000000 transparent transparent;
  }
  50% {
    border-color: transparent #000000 #000000 transparent;
  }
  75% {
    border-color: transparent #000000 #000000 #000000;
  }
  100% {
    border-color: #000000;
    transform: rotate(-680deg);
  }
}
@keyframes active-btn19 {
  0% {
    border-color: transparent;
    transform: rotate(0);
  }
  25% {
    border-color: transparent #000000 transparent transparent;
  }
  50% {
    border-color: transparent #000000 #000000 transparent;
  }
  75% {
    border-color: transparent #000000 #000000 #000000;
  }
  100% {
    border-color: #000000;
    transform: rotate(-680deg);
  }
}
/*============
      #mask
      =============*/
#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 25;
  cursor: pointer;
}

/*------------------------------------*\
    footer
\*------------------------------------*/
footer .footer-wrapper .f-site_info {
  display: block;
  justify-content: center;
  padding-top: 30px;
}
footer .footer-wrapper .f-site_info .f-link_wrapper {
  display: block;
}
footer .footer-wrapper .f-site_info .f-address_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 350px;
  padding-top: 10px;
  padding-bottom: 70px;
  text-align: center;
  justify-content: space-evenly;
  margin: auto;
}
footer .footer-wrapper .f-site_info .f-address_wrapper span {
  font-size: min(3vw, 1.2rem);
  letter-spacing: -0.03rem;
  color: #000;
}
@media screen and (max-width: 736px) {
  footer .footer-wrapper .f-site_info .f-address_wrapper span {
    width: 100%;
    display: block;
    text-align: center;
  }
}
footer .footer-wrapper .f-site_info .f-address_wrapper span a {
  color: #353535;
}
footer .f-copyright {
  text-align: center;
  font-size: min(2.5vw, 1rem);
  line-height: 1em;
  padding: 5px;
  letter-spacing: -0.03rem;
  background-color: #0b6d50;
  color: #FFFFFF;
}

/* =========================================================
   ページトップボタン
========================================================= */
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  padding-bottom: 10px;
}
#page-top a {
  background-color: #19aaaa;
  font-size: 1.6rem;
  color: #fff;
  border-top: #39a9ff 3px solid;
  border-left: #39a9ff 3px solid;
  border-bottom: #0e5c97 3px solid;
  padding: 8px;
  border-radius: 20px 0 0 20px;
  box-shadow: 3px 3px 12px -2px #727272;
}

/*------------------------------------*\
    layout
\*------------------------------------*/ /*------------------------------------*\
    hero
\*------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 800px;
}
@media screen and (max-width: 736px) {
  .hero {
    height: 40vh;
    min-height: 350px;
  }
}
.hero .hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-weight: 700;
}
.hero .hero__title .c-section-top__head-main {
  font-size: clamp(2.5rem, 3.5rem + 1vw, 8rem);
  /*@include mq(md) {
      font-size: clamp(2.2rem, 1.2rem + 1vw, 4rem);
  }

  @include mq(sm) {
      font-size: clamp(2rem, 1.1rem + 0.8vw, 3.5rem);
  }*/
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__ripples {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-ripple {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(160, 224, 255, 0.6);
  box-shadow: 0 0 0 1px rgba(80, 180, 220, 0.35), 0 0 30px rgba(40, 140, 200, 0.5);
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0.55;
  -webkit-animation: hero-ripple-wave 1.9s ease-out forwards;
          animation: hero-ripple-wave 1.9s ease-out forwards;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

@-webkit-keyframes hero-ripple-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0.55;
  }
  55% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.35;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

@keyframes hero-ripple-wave {
  0% {
    transform: translate(-50%, -50%) scale(0.35);
    opacity: 0.55;
  }
  55% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.35;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__ripples,
.hero-ripple {
    -webkit-animation: none !important;
            animation: none !important;
  }
}
@media screen and (max-width: 1000px) {
  .hero__title-pc {
    display: none;
  }
}

.hero__title-sm {
  display: none;
}
@media screen and (max-width: 1000px) {
  .hero__title-sm {
    display: block;
  }
  .hero__title-sm .c-section-top__head-main {
    font-size: 4vw !important;
  }
  .hero__title-sm .c-section-top__head-main span {
    white-space: nowrap;
  }
  .hero__title-sm .c-section-top__head-sub {
    font-size: 2.5vw !important;
  }
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}

/*------------------------------------*\
    _about
\*------------------------------------*/
.about .c-section {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
}

.about__inner {
  box-sizing: border-box;
}

/* 左右レイアウト */
.about__profile {
  width: 1000px;
  max-width: calc(100% - 5vw);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 5rem 2.5rem;
}
@media screen and (max-width: 1000px) {
  .about__profile {
    flex-direction: column;
  }
}
@media screen and (max-width: 736px) {
  .about__profile {
    padding: 2rem;
  }
}
.about__profile .about__image {
  flex: 0 0 20%;
  margin: auto;
}
@media screen and (max-width: 1000px) {
  .about__profile .about__image {
    flex: none;
    width: 180px;
    margin-bottom: 1.5rem;
  }
}
.about__profile .about__image img {
  max-width: 150px;
  height: auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  filter: drop-shadow(5px 6px 4px rgba(46, 46, 46, 0.1));
  margin: auto;
}

.about__content {
  flex: 0 0 75%;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1a1a1a;
  padding: 20px 10px;
  padding-left: 5rem;
  border-left: solid 1px;
}
@media screen and (max-width: 1000px) {
  .about__content {
    padding-left: 3.5rem;
    border-left: solid 0px;
  }
}
@media screen and (max-width: 667px) {
  .about__content {
    padding: 0;
  }
}

.about__name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0.75rem;
}

.about__text {
  font-size: 1.5rem;
  line-height: 1.7;
  padding: 20px 0;
}

.about__content-like {
  position: relative;
  text-align: center;
}
.about__content-like::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgb(0, 0, 0) 50%, transparent 100%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(0%) translateX(-50%);
}

.about__skill {
  width: 830px;
  max-width: calc(100% - 5vw);
  margin: auto;
  padding: 2.5rem;
  padding-bottom: 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1000px) {
  .about__skill {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 736px) {
  .about__skill {
    padding: 2rem;
  }
}

.about__skill-list {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding-bottom: 0.5em;
}
.about__skill-list:last-of-type {
  padding-bottom: 0;
}
.about__skill-list li {
  display: block;
  background-color: #FFFFFF;
  border-radius: 1em;
  padding: 0.5px 10px;
}

.about__content-skill {
  padding-bottom: 0;
}

/*------------------------------------*\
    _contact
\*------------------------------------*/
.contact__lead {
  max-width: 60ch;
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact__form {
  max-width: 750px;
  display: grid;
  gap: 1.5rem;
  margin: auto;
  padding: 2rem;
  background-color: #FFFFFF;
}
@media screen and (max-width: 736px) {
  .contact__form {
    gap: 1rem;
  }
}

.contact__link {
  text-align: center;
  transition: all 1s;
}
.contact__link:hover {
  background-color: #3b8b6f;
}

.contact__text-attention {
  text-align: center;
}

.contact__field {
  display: grid;
  gap: 0.5rem;
}
.contact__field label {
  font-weight: 600;
  color: #1a1a1a;
}
.contact__field input,
.contact__field textarea,
.contact__field select {
  width: 100%;
  font: inherit;
  color: #1a1a1a;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  outline: 2px solid rgba(11, 109, 80, 0.25);
  border-color: rgba(11, 109, 80, 0.6);
}
.contact__field textarea {
  min-height: 10rem;
}
@media screen and (max-width: 736px) {
  .contact__field textarea {
    min-height: 8rem;
  }
}

.contact__submit {
  justify-self: start;
}
.contact__submit .c-btn {
  /* components/_button.scss を想定 */
  min-width: 12rem;
}

input[type=submit]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===============================
   フォーム全体の入力文字サイズを統一
=============================== */
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=url],
.c-form input[type=number],
.c-form input[type=date],
.c-form textarea,
.c-form select {
  font-size: 1.6rem;
  /* ← 16px相当。お好みで1.4rem〜1.8remくらい */
  line-height: 1.5;
  padding: 0.6em 0.8em;
  /* 入力欄の内側余白を増やして打ちやすく */
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

/* placeholder の文字も少し大きく */
.c-form ::-moz-placeholder {
  font-size: 1.5rem;
  color: #aaa;
}
.c-form ::placeholder {
  font-size: 1.5rem;
  color: #aaa;
}

/* フォーカス時のアクセント */
.c-form input:focus,
.c-form textarea:focus,
.c-form select:focus {
  outline: none;
  border-color: var(--color-accent, #3b8b6f);
  box-shadow: 0 0 0 2px rgba(59, 139, 111, 0.2);
}

.c-form input,
.c-form textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.c-form input,
.c-form textarea {
  font-size: clamp(1.4rem, 1.2rem + 0.5vw, 1.8rem);
}

/* フォーム内チェックボックスの素の表示を強制 */
.c-form input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  inline-size: 1.1em;
  block-size: 1.1em;
  margin: 0 0.5em 0 0;
  vertical-align: -0.15em;
}

/* ラベルと並べて配置（複数個も綺麗に並ぶ） */
.c-form .mwform-checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
  /* 横並びの間隔 */
}

/* 確認画面だけに当たる親クラス */
.mw_wp_form_confirm .c-form__row {
  grid-template-columns: 12rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
}

.c-form__row {
  padding: 3rem 0;
  border-bottom: dashed 1px #adadad;
  margin: 0;
}
.c-form__row:last-of-type {
  border-bottom: none;
}
.c-form__row br {
  display: none;
}

.mw_wp_form_confirm .c-form__label {
  font-weight: 600;
}

.c-form__label {
  display: block;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mw_wp_form_confirm .c-form__actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}

/* エラーテキストの基本 */
.c-form .mwform-error {
  display: block;
  margin-top: 0.4rem;
  color: #d2373c;
  /* 視認性の高い赤 */
  font-size: 1.3rem;
  line-height: 1.5;
}

/* テキスト・メール等の下に自然に出るよう調整 */
.c-form input[type=text] + .mwform-error,
.c-form input[type=email] + .mwform-error,
.c-form input[type=tel] + .mwform-error,
.c-form input[type=url] + .mwform-error,
.c-form input[type=number] + .mwform-error,
.c-form input[type=date] + .mwform-error,
.c-form textarea + .mwform-error,
.c-form select + .mwform-error {
  margin-top: 0.35rem;
}

/* チェックボックス/ラジオの配置（複数行でも下に揃う） */
.c-form .mwform-checkbox-field ~ .mwform-error,
.c-form .mwform-radio-field ~ .mwform-error {
  margin-top: 0.5rem;
}

/* 「個人情報の取り扱い」の箱の中身に依存せず、チェック直下に出したい場合の保険 */
.c-form__row--privacy .mwform-error {
  margin-left: 0;
}

.c-form__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.c-form__checks > label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.c-form input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  inline-size: 1.1em;
  block-size: 1.1em;
}

.mwform-error {
  display: block;
  margin-top: 0.4rem;
  color: #d2373c;
  font-size: 1.3rem;
}

/* カレンダーを最前面に（他の要素に隠れないように） */
#ui-datepicker-div {
  z-index: 10000 !important;
}

/* ラベルの行で一度改行させる（チェック群が次行から始まる） */
.c-form__row--agree .c-form__label {
  display: block;
  /* ← これで最初のチェックがラベル横に来ない */
  margin-bottom: 0.4rem;
}

/* 必須バッジの余白 */
.c-form__label .c-form__req {
  margin-left: 0.5em;
}

/* チェックボックス群の見た目 */
.c-form__row--agree .mwform-checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  /* □ とテキストの間隔 */
  margin: 0.25rem 1.2rem 0.25rem 0;
  /* 各項目の外側余白 */
}

/* ブラウザやテーマで非表示化されている場合の復活＆サイズ統一 */
.c-form__row--agree input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
  inline-size: 1.1em;
  block-size: 1.1em;
  margin: 0;
  vertical-align: -0.15em;
}

/* スマホで詰まる時は折り返し幅を確保 */
@media (max-width: 736px) {
  .c-form__row--agree .mwform-checkbox-field {
    margin-right: 0.8rem;
  }
}
.c-form__actions p {
  width: 100%;
  max-width: 100%;
}
.c-form__actions p .kakunin {
  display: block;
  margin: auto;
  border: 0px;
  background-color: #82c0ad;
  font-weight: 600;
  padding: 15px 20px;
  width: 100%;
  max-width: 90%;
  border-radius: 15px;
  box-shadow: 5px 5px 4px rgba(196, 196, 196, 0.5);
  color: #FFFFFF;
  /* text-shadow: 3px 2px rgba(196, 196, 196, 0.9); */
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  font-weight: 700;
  transition: all 0.9s;
}
.c-form__actions p .kakunin:hover {
  background-color: #568a7a;
}

/*------------------------------------*\
    _portfolio
\*------------------------------------*/
.portfolio__title {
  font-size: clamp(1.25rem, 1.1rem + 1vw, 1.75rem);
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
}

/* 一覧ページ用 */
.portfolio__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 736px) {
  .portfolio__list {
    display: block;
  }
}
.portfolio__list a {
  pointer-events: none;
}

.portfolio__card {
  /* `.c-card` をHTML側で併記 */
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 736px) {
  .portfolio__card {
    margin-bottom: 1em;
  }
  .portfolio__card:last-of-type {
    margin-bottom: 0;
  }
}
.portfolio__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.portfolio__card .portfolio__thumb {
  overflow: hidden;
  aspect-ratio: 16/11;
}
.portfolio__card .portfolio__thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.portfolio__card .portfolio__info {
  margin-top: 1rem;
}
.portfolio__card .portfolio__info h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portfolio__card .portfolio__info p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* 詳細ページ用 */
.portfolio-detail {
  max-width: 800px;
  margin: 0 auto;
  padding-block: 2.5rem;
}
@media screen and (max-width: 736px) {
  .portfolio-detail {
    padding-block: 1.5rem;
  }
}
.portfolio-detail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}
.portfolio-detail h1 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.portfolio-detail p {
  line-height: 1.8;
  color: #1a1a1a;
}

/*------------------------------------*\
    _workflow
\*------------------------------------*/
.workflow__title {
  font-size: clamp(1.25rem, 1.1rem + 1vw, 1.75rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.workflow__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 5rem;
  margin-top: 2.5rem;
}

.workflow__card {
  position: relative;
  transition: transform 0.3s ease;
  padding: 3em;
}
@media screen and (max-width: 1224px) {
  .workflow__card {
    padding: 2em;
    margin-right: 1em;
  }
}
@media screen and (max-width: 736px) {
  .workflow__card {
    padding: 2em;
    margin-right: 0;
  }
}
.workflow__card:hover {
  transform: translateY(-4px);
}
.workflow__card .workflow__step {
  font-weight: 700;
  font-size: clamp(1.2rem, 1.5rem + 1vw, 2.5rem);
  background-color: #19aaaa;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  width: 3em;
  height: 3em;
  text-align: center;
  /* padding-top: 1em; */
  line-height: 1.5em;
  border-radius: 2.5em;
  position: absolute;
  top: -1em;
  left: -1em;
}
@media screen and (max-width: 736px) {
  .workflow__card .workflow__step {
    left: -0.5em;
  }
}
.workflow__card .workflow__step span {
  font-size: 50%;
  display: block;
  line-height: 0.1em;
  padding-top: 2em;
}
.workflow__card .workflow__text {
  color: #1a1a1a;
  line-height: 1.6;
}

/*------------------------------------*\
    project
\*------------------------------------*/ /* =========================================================
   Title Animation（1文字ずつフェードアップ）
   ========================================================= */
/* ベース：観測・可視化用 */
.js-title {
  overflow: hidden;
  /* チラ見え防止 */
}

/* 1文字ずつフェードアップ */
.js-title .char {
  opacity: 0;
  transform: translateY(0.6em);
  display: inline-block;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal {
  /* 1文字ずつフェードアップ */
}
.reveal .js-title .char {
  opacity: 0;
  transform: translateY(0.6em);
  display: inline-block;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

/* スペースの見た目 */
.js-title .space {
  display: inline-block;
  width: 0.35em;
}

/* アニメーション発火時 */
.js-title.is-inview .char {
  opacity: 1;
  transform: translateY(0);
}