@charset "UTF-8";
/** @format */
/** @format */
html {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight: 400;
}

body {
  font-family: inherit;
}

:lang(en) {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.c-pagehead {
  --header-h: 80px;
  padding-top: calc(var(--header-h) + 120px);
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .c-pagehead {
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 28px;
  }
}

.c-sectionhead {
  text-align: center;
  margin-bottom: 80px;
}
.c-sectionhead__title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.1;
  margin: 0 0 10px;
}
.c-sectionhead__subtitle {
  font-size: 14px;
  letter-spacing: 0.2em;
  margin: 0;
  color: #333333;
}
@media (max-width: 767px) {
  .c-sectionhead {
    margin-bottom: 40px;
  }
  .c-sectionhead__title {
    font-size: 36px;
  }
  .c-sectionhead__subtitle {
    font-size: 14px;
  }
}

.c-breadcrumb {
  margin: 0 0 40px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .c-breadcrumb {
    margin-bottom: 24px;
    font-size: 10px;
  }
}

.c-lead {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  text-align: center;
}
@media (max-width: 768px) {
  .c-lead {
    font-size: 13px;
    line-height: 2;
  }
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 16px 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #444;
  border: 2px solid #444;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.35s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.35s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.35s ease, transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#CDEBE3), to(#A8E0D1));
  background: linear-gradient(90deg, #CDEBE3 0%, #A8E0D1 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}
.c-btn span {
  position: relative;
  z-index: 1;
}
.c-btn::after {
  content: " ›";
  position: relative;
  margin-left: 6px;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.c-btn:hover {
  color: #2F5F57;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}
.c-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn:hover::after {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .c-btn {
    font-size: 14px;
    padding: 12px 32px;
  }
}
@media (max-width: 440px) {
  .c-btn {
    font-size: 11px;
    padding: 12px 16px;
  }
}
.c-btn-contact {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 720px;
  text-align: center;
  padding: 20px 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid #7EC8B6;
  color: #3F6F67;
  background: transparent;
  overflow: hidden;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  /* グラデーション */
}
.c-btn-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#BFE8DD), to(#8FD6C5));
  background: linear-gradient(90deg, #BFE8DD 0%, #8FD6C5 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 0;
}
.c-btn-contact span {
  position: relative;
  z-index: 1;
}
.c-btn-contact::after {
  content: " → ";
  margin-left: 8px;
  position: relative;
  -webkit-transition: margin 0.3s ease;
  transition: margin 0.3s ease;
}
.c-btn-contact:hover {
  color: #fff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.c-btn-contact:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-btn-contact:hover::after {
  margin-left: 14px;
}

/* SP */
@media (max-width: 767px) {
  .c-btn-contact {
    max-width: 100%;
    font-size: 15px;
  }
}
.contact-cta {
  padding: 140px 0;
  background: #f7faf8;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-cta {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .contact-cta {
    padding: 80px 0;
  }
}

.contact-cta__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-cta__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 60px;
}

.contact-cta__lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 48px;
}

.contact-cta__text {
  font-size: 16px;
  line-height: 2;
  color: #555;
}

.contact-cta__illust img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
}

.contact-cta__illust-sp {
  display: none;
}

.contact-cta__note {
  margin-top: 50px;
  font-size: 14px;
  color: #6BC1A9;
  font-weight: 600;
}

.contact-cta__button-wrapper {
  margin-top: 20px;
}

.contact-cta__button {
  position: relative;
  display: inline-block;
  padding: 20px 72px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6BC1A9, #58B79F);
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.contact-cta__button span {
  position: relative;
  z-index: 2;
}
.contact-cta__button::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 60%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.contact-cta__button:hover::after {
  left: 130%;
}
.contact-cta__button:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .contact-cta__main {
    display: block;
  }
  .contact-cta__illust {
    display: none;
  }
  .contact-cta__illust-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-top: 40px;
  }
  .contact-cta__illust-sp img {
    max-width: 80px;
    width: 100%;
  }
  .contact-cta__lead {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .contact-cta__text {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .contact-cta__illust-sp img {
    max-width: 100px;
  }
  .contact-cta__button {
    padding: 18px 56px;
    font-size: 14px;
  }
  .contact-cta__lead {
    font-size: 19px;
  }
}
.pc {
  display: block;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
}
.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
}
.is-corporate {
  background: #E6F5F1;
  color: #4A9E8A;
}

.is-lp {
  background: rgba(232, 241, 251, 0.95);
  color: #4A7FCF;
}

.is-blog {
  background: #FFF3E6;
  color: #E39B4A;
}

.is-ec {
  background: #FDECEF;
  color: #D96A7C;
}

.is-portfolio {
  background: #F2ECFF;
  color: #8A6AD9;
}

.is-banner {
  background: #FFF9E6;
  color: #D9A441;
}

.c-cta {
  text-align: center;
  margin-top: 48px;
}

.c-cta__btn {
  position: relative;
  display: inline-block;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  border: 2px solid #98D4C7;
  color: #98D4C7;
  background: transparent;
  -webkit-transition: color 0.35s ease;
  transition: color 0.35s ease;
}
.c-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#98D4C7), to(#6BC1A9));
  background: linear-gradient(90deg, #98D4C7 0%, #6BC1A9 100%);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  z-index: 0;
}
.c-cta__btn span {
  position: relative;
  z-index: 1;
}
.c-cta__btn:hover {
  color: #fff;
}
.c-cta__btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.about__band {
  width: 100%;
  padding: 56px 0;
}
.about__band--profile, .about__band--strength {
  background: #F4FCF5;
}
.about__band--skills {
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .about__band {
    padding: 40px 0;
  }
}

.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.about__subTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 0 40px;
}

.about__dash {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about__subTitleText {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  -webkit-column-gap: 160px;
     -moz-column-gap: 160px;
          column-gap: 160px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .profile {
    grid-template-columns: 1fr;
    row-gap: 24px;
    justify-items: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.profile__avatar {
  margin: 0;
  display: grid;
  place-items: center;
  width: 320px;
  height: 320px;
}
@media (max-width: 768px) {
  .profile__avatar {
    width: 220px;
    height: 220px;
  }
}

.profile__avatarImg {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 50%;
  -webkit-box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.14), 0 0 0 4px rgba(255, 255, 255, 0.6);
          box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.14), 0 0 0 4px rgba(255, 255, 255, 0.6);
}

.profile__body {
  max-width: 660px;
  min-width: 0;
}
@media (max-width: 768px) {
  .profile__body {
    max-width: 660px;
  }
}

.profile__name {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.profile__nameEn {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.profile__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333333;
}
.profile__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .profile__text {
    font-size: 14px;
  }
}

.profile__text span {
  font-weight: 700px;
}

/* =============================
   Skills
============================= */
.skills {
  --col-label: 220px;
  --col-gap: 220px;
  --line: #d9d9d9;
  --line-soft: #e9e9e9;
  display: grid;
  row-gap: 40px;
}

/* =============================
   Group
============================= */
.skills__group {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.skills__group.skills__group--last {
  border-bottom: none;
  padding-bottom: 0;
}

/* =============================
   Top Layout
============================= */
.skills__top {
  display: grid;
  grid-template-columns: var(--col-label) 1fr;
  -webkit-column-gap: var(--col-gap);
     -moz-column-gap: var(--col-gap);
          column-gap: var(--col-gap);
  row-gap: 40px;
  grid-template-areas: "title desc" "toggle toggle";
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* SP */
@media (max-width: 768px) {
  .skills__top {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "desc" "toggle";
  }
}
/* =============================
   Title
============================= */
.skills__head {
  grid-area: title;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.skills__icon {
  width: 16px;
  height: 16px;
}

.skills__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* =============================
   Description
============================= */
.skills__desc {
  grid-area: desc;
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333333;
}

/* =============================
   Toggle Button
============================= */
.skills__toggle {
  grid-area: toggle;
  justify-self: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #98D4C7;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

/* hover */
.skills__toggle:hover {
  background: #98D4C7;
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

/* focus */
.skills__toggle:focus-visible {
  outline: 2px solid #98D4C7;
  outline-offset: 3px;
}

/* =============================
   Plus Icon
============================= */
.skills__plus {
  position: relative;
  width: 16px;
  height: 16px;
}

.skills__plus::before,
.skills__plus::after {
  content: "";
  position: absolute;
  background: #98D4C7;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.skills__plus::before {
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.skills__plus::after {
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
}

/* hover color */
.skills__toggle:hover .skills__plus::before,
.skills__toggle:hover .skills__plus::after {
  background: #fff;
}

/* ＋ → × */
.skills__group.is-open .skills__plus::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* =============================
   List Animation
============================= */
.skills__list {
  list-style: none;
  padding: 0;
  margin-top: 32px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.skills__group.is-open .skills__list {
  max-height: 1200px;
  opacity: 1;
}

/* =============================
   Item
============================= */
.skills__item {
  display: grid;
  grid-template-columns: var(--col-label) 1fr;
  -webkit-column-gap: var(--col-gap);
     -moz-column-gap: var(--col-gap);
          column-gap: var(--col-gap);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
}

/* SP */
@media (max-width: 768px) {
  .skills__item {
    grid-template-columns: 1fr;
    row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
/* top line */
.skills__item--topline {
  border-top: 1px solid var(--line);
}

/* both line */
.skills__item--bothline {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* =============================
   Label
============================= */
.skills__label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #98D4C7;
}

/* =============================
   Text
============================= */
.skills__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333333;
}

.about__band--strength {
  background: #F4FCF5;
}

.strength {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 960px) {
  .strength {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.strength__card {
  position: relative;
  margin: 0;
  padding: 22px 22px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
@media (max-width: 960px) {
  .strength__card {
    padding: 18px 18px 16px;
  }
}

.strength__num {
  position: absolute;
  top: 14px;
  left: 14px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
}

.strength__head {
  display: grid;
  grid-template-columns: 56px 1fr;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 6px;
  margin-bottom: 12px;
}

.strength__icon {
  margin: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
}

.strength__iconImg {
  width: 34px;
  height: auto;
  display: block;
}

.strength__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.strength__text {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #333333;
}