@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* destyleにスタイル追加 */
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

/* destyleにスタイル追加②フォーム系 */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
[type=number]::-webkit-outer-spin-button, [type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

[type=radio],
[type=checkbox] {
  cursor: pointer;
}

button,
[type=submit],
[type=reset] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

label {
  cursor: pointer;
}

/* --------------------------------------------
 font
-------------------------------------------- */
@font-face {
  font-family: "NotoSansJP";
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}
/* --------------------------------------------
 base
-------------------------------------------- */
body {
  overflow-x: hidden;
  font-family: "YakuHanJPs", "NotoSansJP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #1E1E1E;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

/* br */
.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/* 非表示要素 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------
layout
-------------------------------------------- */
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 5px 5px;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0 13px 13px;
  }
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  padding-inline: 6.4102564103vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 4.1666666667vw;
  }
}

/* --------------------------------------------
 header
-------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #FFF;
}
@media (min-width: 768px) {
  .header {
    padding-inline: 5.5555555556vw;
  }
}

.header-container {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .header-container {
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding-block: 15px;
    margin: 0 auto;
  }
}

.header__header-title {
  display: none;
}
@media (min-width: 768px) {
  .header__header-title {
    display: block;
    font-size: 1.4375rem;
    color: #CACACA;
  }
}

/* グローバルメニューopenボタン */
.header__menu-btn {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  border: 1px solid #CACACA;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .header__menu-btn {
    display: none;
  }
}

.header__menu-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  color: #CACACA;
  transform: translate(-50%, -50%);
}

/* グローバルメニューコンテンツ */
@media (max-width: 768px) {
  .header-nav__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  right: -80%;
  z-index: 50;
  width: 80%;
  height: 100%;
  margin: auto;
  visibility: hidden;
  background: #FFF;
  box-shadow: -5px 0 10px 0 rgba(148, 151, 134, 0.3);
  opacity: 0;
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .header-nav {
    position: relative;
    right: auto;
    left: 0;
    width: auto;
    margin: 0;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
}

/* メニューclose オーバーレイ */
.header-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: rgba(223, 223, 223, 0.6);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}
@media (min-width: 768px) {
  .header-nav__overlay {
    display: none;
  }
}

/* メニューclose ボタン */
.header-nav__close-btn {
  padding: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #CACACA;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .header-nav__close-btn {
    display: none;
  }
}

.header-nav__top {
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .header-nav__top {
    text-align: unset;
    opacity: 1;
  }
}

.header-nav-list {
  padding: 60px 30px 30px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .header-nav-list {
    display: flex;
    gap: 3.8194444444vw;
    padding: 0;
  }
}

.header-nav-list__item {
  width: 100%;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .header-nav-list__item {
    width: auto;
    padding: 2px;
  }
  .header-nav-list__item:hover {
    opacity: 0.5;
  }
}

.header-nav-list__item:not(:last-child) {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .header-nav-list__item:not(:last-child) {
    padding-bottom: 0;
  }
}

.header-nav-list__link {
  display: block;
  padding: 10px;
  font-size: 1.1875rem;
  font-weight: 700;
  background: #FFF;
  border: 1px solid #93A86A;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .header-nav-list__link {
    padding: 2px;
    border: transparent;
  }
}

/* メニュー内サイトタイトル */
.header-nav__bottom {
  padding: 0% 5% 40%;
  margin: 10px;
  background-position: bottom;
  background-size: contain;
  border-radius: 10px;
  background-image: url("../img/_common/image_bg-trees.webp");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .header-nav__bottom {
    display: none;
  }
}

.header-nav-title {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: opacity 2s 0.2s;
}

.header-nav-title__img {
  max-width: 100px;
  padding-bottom: 8px;
  margin: 0 auto;
}

.header-nav-title__name {
  padding-right: 6px;
  background: linear-gradient(90deg, rgb(135, 154, 57) 9%, rgb(157, 182, 113) 30%, rgb(87, 139, 101) 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav-title__heading {
  font-size: min(5.1282051282vw, 25px);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}

/* グローバルメニュー オープン */
@media (max-width: 768px) {
  body.is-open {
    overflow: hidden;
  }
  body.is-open .header-nav {
    right: 0%;
    visibility: visible;
    opacity: 1;
  }
  body.is-open .header-nav__overlay {
    visibility: visible;
    opacity: 1;
  }
  body.is-open .header-nav__top {
    opacity: 1;
  }
  body.is-open .header-nav-title {
    opacity: 1;
  }
}
/* --------------------------------------------
 link
-------------------------------------------- */
/* ページ内リンク調整 */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

/* リンクボタン */
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding-block: 0.875rem;
  margin: 0 auto;
  border: 0.5px transparent solid;
  border-radius: 50px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .page-link {
    display: inline-flex;
    width: auto;
    padding-inline: 1.25rem;
  }
}

.page-link__text {
  padding-right: 20px;
  font-size: 0.875rem;
}

.page-link__arrow {
  position: relative;
  width: 30px;
  height: 13px;
  overflow: hidden;
}
.page-link__arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-size: contain;
  transition: transform 0.3s;
  background-image: url("../img/_common/icon_arrow-to-right.svg");
  background-repeat: no-repeat;
}

/* リンクボタン ホバー時 */
@media (min-width: 768px) {
  .page-link:hover {
    border: 0.5px #CACACA solid;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0);
  }
  .page-link:hover .page-link__arrow::before {
    transform: translateX(3px);
  }
}
/* --------------------------------------------
components
-------------------------------------------- */
/* 大きい見出し */
.main-heading {
  padding-top: 24px;
  padding-bottom: 40px;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .main-heading {
    padding-bottom: 80px;
    font-size: 40px;
  }
}

/* --------------------------------------------
 loading
-------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #fff;
}

body.is-fixed {
  overflow: hidden;
}

.loading-pulse {
  width: 60px;
  height: 60px;
  margin: 100px auto;
  background-color: #93A86A;
  border-radius: 100%;
  opacity: 0;
}

/* --------------------------------------------
 animation
-------------------------------------------- */
/* 上にふわっと */
.fadeup-animation {
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transform: translateY(10px);
}

.fadeup-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ふわっと */
.fadein-animation {
  opacity: 0;
  transition: opacity 1s 0.2s;
}

.fadein-animation.visible {
  opacity: 1;
}

/* --------------------------------------------
 footer
-------------------------------------------- */
/* topへ戻る */
.page-top {
  text-align: center;
  border-top: 1px solid #CACACA;
}

.page-top__link {
  display: block;
  padding-block: 0.5rem;
}

.page-top__icon {
  width: 18px;
  padding-bottom: 5px;
  margin-right: 5px;
}

.page-top__text {
  font-size: 0.9375rem;
  color: #CACACA;
}

/* フッター共通 */
.footer-container {
  position: relative;
  padding-inline: 7.6923076923vw;
  padding-top: 40px;
  overflow: hidden;
  border-radius: 15px;
}
.footer-container::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1E1E1E;
  border-radius: 15px;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .footer-container {
    padding-inline: 4.1666666667vw;
    border-radius: 20px;
  }
  .footer-container::after {
    border-radius: 20px;
  }
}

.footer__copyright {
  position: relative;
  z-index: 5;
  padding-bottom: 12px;
  color: #4a4a4a;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

/* TOP・ABOUTのフッター */
.footer-container--base::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  filter: blur(5px);
  background-size: cover;
  border-radius: 15px;
  opacity: 0;
  background-image: url("../img/_common/image_basic-footer.webp");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer-container--base::before {
    background-position: 50% 70%;
    border-radius: 20px;
  }
}

footer.visible .footer-container--base::before {
  animation: fade-in 2.5s ease-in-out forwards;
}
@media (min-width: 768px) {
  footer.visible .footer-container--base::before {
    animation: fade-in 2s ease-in-out forwards;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer__main {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column-reverse;
  gap: 100px;
  margin-bottom: 60px;
  color: #FFF;
}
@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    gap: unset;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
}

.footer__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__wrapper {
    display: block;
    width: auto;
    margin: 0;
  }
}

.footer-nav-list {
  display: flex;
  gap: 12.8205128205vw;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .footer-nav-list {
    gap: unset;
    justify-content: space-between;
    margin-bottom: 140px;
  }
}

.footer-nav-list__item {
  font-size: 1.0625rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer-nav-list__item {
    font-size: 1.25rem;
    transition: opacity 0.3s;
  }
  .footer-nav-list__item:hover {
    opacity: 0.5;
  }
}

@media (min-width: 768px) {
  .contact__wrapper {
    display: flex;
    gap: 35px;
    align-items: baseline;
  }
}

.contact__title {
  padding-bottom: 13px;
  font-size: 1.0625rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contact__title {
    padding-bottom: 0;
    font-size: 1.25rem;
  }
}

.contact__text {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 1.5625rem;
  }
}

.contact__link {
  display: block;
  padding-top: 13px;
  font-size: 0.8125rem;
  color: #808080;
  text-decoration: underline;
}

/* フッター サイトタイトル */
.footer-title {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-title {
    text-align: right;
  }
}

.footer-title__heading {
  padding-bottom: 10px;
  font-size: clamp(23px, 6.6666666667vw, 28px);
}

.footer-title__name {
  padding-right: 6px;
  background: linear-gradient(90deg, rgb(135, 154, 57) 9%, rgb(157, 182, 113) 30%, rgb(87, 139, 101) 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-title__catch {
  padding-top: 10px;
  font-size: clamp(15px, 3.8461538462vw, 17px);
  font-weight: 500;
}

/* ****** ここからaboutページ固有 ****** */
/* --------------------------------------------
 ABOUT 全section共通
-------------------------------------------- */
/* セクション見出しの番号用 */
main {
  counter-reset: head-num 0;
}

.section-container {
  padding-bottom: 70px;
  border-bottom: 1px solid #8D8D8D;
}
.section-container:last-of-type {
  border: none;
}
@media (min-width: 768px) {
  .section-container {
    padding-bottom: 100px;
  }
}

/* セクション見出し */
.section-heading {
  display: flex;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .section-heading {
    padding-top: 40px;
    margin-bottom: 60px;
  }
}

.section-heading__number {
  position: relative;
  width: 1.875rem;
  height: 50px;
  margin-right: 0.625rem;
}
.section-heading__number::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  font-size: 0.75rem;
  font-weight: 400;
  content: "(0" counter(head-num) ")";
  counter-increment: head-num 1;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .section-heading__number::before {
    font-size: 1.0625rem;
  }
}

.secton-heading__en {
  padding-right: 0.625rem;
  overflow: hidden;
  font-size: 36px;
}
@media (min-width: 768px) {
  .secton-heading__en {
    padding-right: 1.25rem;
    font-size: 57px;
  }
}
.secton-heading__en span {
  display: inline-block;
  visibility: visible;
  opacity: 0;
  transform: translateY(-100%);
}

.secton-heading__ja {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #808080;
}
@media (min-width: 768px) {
  .secton-heading__ja {
    font-size: 1.0625rem;
  }
}

/* --------------------------------------------
intro-section
-------------------------------------------- */
.container--small {
  max-width: 1000px;
  margin: 0 auto;
}

.intro__img {
  width: 100%;
  margin: 0 auto 60px;
}
@media (min-width: 768px) {
  .intro__img {
    max-width: 560px;
  }
}

.intro__description {
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: 700;
}
@media (min-width: 768px) {
  .intro__description {
    font-size: 30px;
    line-height: 1.9333333333;
  }
}

/* --------------------------------------------
 mind-section
-------------------------------------------- */
.mind-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .mind-list {
    flex-direction: row;
  }
}

.mind-list__title {
  position: absolute;
  inset: auto 0;
  height: 55px;
  margin: auto;
  font-size: 1.125rem;
  text-align: center;
}
@media (min-width: 768px) {
  .mind-list__title {
    font-size: 1.25rem;
  }
}

.mind-list__item {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  margin: 0 auto;
  background: #FFF;
  border: 1px solid #8D8D8D;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .mind-list__item {
    padding: 28px;
    margin: 0 auto;
  }
}
.mind-list__item:last-child .mind-list__title {
  margin-top: -10px;
}
.mind-list__item::after {
  position: absolute;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background: #CACACA;
  border-radius: 30px;
}

.mind-list__img {
  width: 150px;
  margin: 0 auto 15px;
  margin-top: 60px;
}

.mind-list__description {
  max-width: 350px;
  margin: 0 auto;
  text-align: justify;
  line-height: 2;
}
@media (min-width: 768px) {
  .mind-list__description {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}

/* --------------------------------------------
 personality-section
-------------------------------------------- */
.personality-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1024px) {
  .personality-container {
    flex-direction: row;
    gap: 5.1282051282vw;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* 特性 タイプ */
.personality__top {
  display: grid;
  place-content: center;
  width: 75%;
  max-width: 500px;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #8D8D8D;
}
@media (min-width: 1024px) {
  .personality__top {
    width: auto;
    padding: 50px 20px;
  }
}

.personality__lead {
  margin-bottom: 10px;
  white-space: pre;
}

.personality__text {
  padding-left: 10px;
  font-size: 1.875rem;
  font-weight: 700;
}

.personality__link {
  font-size: 0.9375rem;
  color: #808080;
}
.personality__link > a {
  text-decoration: underline;
}

/* 特性リスト */
.personality__main {
  display: grid;
  gap: 40px;
  justify-content: center;
}
@media (min-width: 768px) {
  .personality__main {
    display: flex;
    flex-flow: row nowrap;
    gap: 3.4722222222vw;
  }
}

.personality-list__item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .personality-list__item {
    margin-bottom: 24px;
    font-size: 1.25rem;
  }
}
.personality-list__item::before {
  position: absolute;
  inset: 0 auto;
  left: 0;
  width: 15px;
  height: 15px;
  margin: auto;
  content: "";
  border-radius: 15px;
}
.personality-list__item:last-child {
  margin-bottom: 0;
}

.personality-list--strength .personality-list__item::before {
  background: #93A86A;
}

.personality-list--weakness .personality-list__item::before {
  border: 1px solid #93A86A;
}

/* --------------------------------------------
 skill-section
-------------------------------------------- */
/* スキルタブ */
.skill-tab {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .skill-tab {
    margin-bottom: 40px;
  }
}

.skill-tab__btn {
  position: relative;
  width: 33.3333333333%;
  padding-block: 15px;
  font-size: 1rem;
  font-weight: 700;
  color: #CACACA;
  text-align: center;
  background: #FFF;
  border: 1px solid #CACACA;
  border-radius: 5px;
  transition: background-color 0.3s ease-out;
}
@media (min-width: 768px) {
  .skill-tab__btn {
    padding-block: 5px 8px;
    font-size: 1.875rem;
  }
}

.skill-tab__btn.is-active {
  color: #FFF;
  background: #93A86A;
  border: 1px solid #93A86A;
}
.skill-tab__btn.is-active::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  pointer-events: none;
  content: " ";
  border: solid transparent;
  border-color: rgba(136, 183, 213, 0);
  border-width: 10px 8px 20px;
  border-top-color: #93A86A;
}

/* スキルタブコンテンツ */
.skill-tab-content__item {
  display: none;
  width: 100vw;
  padding-block: 20px 60px;
  padding-inline: 6.4102564103vw;
  margin: 0 calc(50% - 50vw);
  background-size: cover;
  background-image: url("../img/_common/bg_polygon.webp");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .skill-tab-content__item {
    width: 100%;
    padding-inline: 2.7777777778vw;
    margin: auto;
  }
}

.skill-tab-content__item.is-show {
  display: block;
}

/* スキルタブコンテンツ　タイトル */
.skill-heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .skill-heading {
    flex-direction: row;
    align-items: center;
  }
}

.skill-heading__en {
  position: relative;
  padding-left: 25px;
  font-size: 1.5625rem;
}
.skill-heading__en::before {
  position: absolute;
  inset: 0 auto;
  left: 0;
  width: 12px;
  height: 80%;
  margin: auto;
  content: "";
  background: #1E1E1E;
}
@media (min-width: 768px) {
  .skill-heading__en {
    font-size: 2.1875rem;
  }
}

.skill-heading__ja {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .skill-heading__ja {
    font-size: 1.375rem;
  }
}

.skill-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: baseline;
}
@media (min-width: 1024px) {
  .skill-content {
    flex-direction: row;
  }
}

.skill-content__wrapper {
  width: 100%;
}
@media (min-width: 1024px) {
  .skill-content__wrapper {
    width: 50%;
  }
  .skill-content__wrapper:first-of-type {
    padding-left: 30px;
  }
}

.skill-content__lead {
  padding-bottom: 4px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #93A86A;
  border-bottom: 1px solid #93A86A;
}
@media (min-width: 768px) {
  .skill-content__lead {
    padding-bottom: 12px;
    font-size: 1.375rem;
  }
}

.skill-content__inner {
  display: flex;
  gap: 2.5641025641vw;
  justify-content: center;
}

.skill-content__unit--multi {
  width: 50%;
}

.unit-title {
  padding-bottom: 5px;
}

.unit-list__item {
  padding-bottom: 5px;
  line-height: 1.5;
  list-style: inside;
}

.skill-content__description {
  line-height: 2.2;
  text-align: justify;
}
@media (min-width: 1024px) {
  .skill-content__description {
    padding-left: 50px;
    font-size: 0.9375rem;
  }
}

/* --------------------------------------------
 biography-section
-------------------------------------------- */
.biography__img-wrapper {
  width: 100vw;
  aspect-ratio: 2/1;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .biography__img-wrapper {
    width: 100%;
    aspect-ratio: 3/1;
    margin: auto;
    margin-bottom: 50px;
  }
}

.biography-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-inline: 10px;
}
@media (min-width: 1024px) {
  .biography-list {
    flex-direction: row;
    gap: 3.8194444444vw;
    padding-inline: 0;
    font-size: 0.9375rem;
  }
}

@media (min-width: 1024px) {
  .biography-list__item {
    width: 32%;
  }
}

.biography-list__title {
  margin-bottom: 10px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .biography-list__title {
    margin-bottom: 20px;
  }
}

.biography-list__description {
  text-align: justify;
  line-height: 2;
}

/* --------------------------------------------
 loop-hushtags
-------------------------------------------- */
/* 流れるハッシュタグ */
.loop-hushtags {
  padding-block: 15px;
  margin-bottom: 50px;
  background: #e3e3e3;
}
@media (min-width: 768px) {
  .loop-hushtags {
    margin-bottom: 80px;
    border-radius: 10px;
  }
}

.loop-hushtags__wrapper {
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

.loop-hushtags__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.loop-hushtags__text {
  display: inline-block;
  padding-right: 40px;
  font-size: 1rem;
  color: #FFF;
}
@media (min-width: 768px) {
  .loop-hushtags__text {
    font-size: 1.25rem;
  }
}

/* --------------------------------------------
 bottom
-------------------------------------------- */
.bottom {
  margin-bottom: 80px;
  text-align: center;
}

.bottom__img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  .bottom__img {
    max-width: 580px;
    margin: 0 auto 50px;
  }
}