@charset "UTF-8";

:root {
    --bg: url(../img/personal/mv.jpg) center / cover no-repeat;
	--bg-sp: url(../img/personal/mv_sp.jpg) center / cover no-repeat;
}

@media only screen and (max-width: 768px) {
    .c-heading--primary h1.c-heading__en {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

.personal {
    padding-top: 100px;
}

@media only screen and (max-width: 768px) {
    .personal {
        padding-top: 80px;
    }
}

.personal__nav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(151px, 151px));
    gap: 40px;
    justify-content: start;
    align-items: flex-end;
    padding-bottom: 110px;
}

@media only screen and (max-width: 768px) {
    .personal__nav-list {
        gap: 40px 20px;
        justify-content: center;
        padding-bottom: 90px;
    }
}

.personal__nav-item {
    font-size: 14px;
    color: var(--color-blue);
    border-bottom: 1px solid var(--color-blue);
}

.personal__navlink {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 15px;
}

.personal__nav-iconWrap {
    width: 22px;
    height: 22px;
    background: var(--color-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.personal__nav-icon {
    width: 10px;
    height: 11px;
    stroke: var(--color-blue);
    fill: none;
    stroke-width: 1.5;
}

.personal__navlink:hover {
    opacity: 1;
}

.personal__nav-item:hover .personal__nav-iconWrap {
    background: var(--color-blue);
}

.personal__nav-item:hover .personal__nav-icon {

    stroke: var(--color-white);
}

@media (hover: hover) and (pointer: fine) {
  .personal__nav-item:hover .personal__nav-iconWrap {
    background: var(--color-blue);
  }

  .personal__nav-item:hover .personal__nav-icon {

    stroke: var(--color-white);
  }
}

.personal__container {
    display: flex;
    gap: 80px;
    padding-bottom: 120px;
}

@media only screen and (max-width: 1024px) {
    .personal__container {
        gap: 40px;
    }
}

@media only screen and (max-width: 768px) {
    .personal__container {
        flex-direction: column;
    }
}

.personal__container--divider {
    border-bottom: 1px solid var(--color-black-10);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.personal__image {
    flex: 1;
    max-width: 385px;
	margin-inline: auto;
}

.personal__img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.personal__body {
    flex: 1;
}

.personal__title {
    display: inline-block;
    padding-inline: 18px;
    margin-bottom: 15px;
    text-align: center;
    background: #F2F3F480;
    border: 1px solid #2635A71A;
    border-radius: 5px;
    height: 34px;
    font-size: 16px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0.05em;
    color: var(--color-blue);

    .bg-gray & {
        background: #ffffff80;
    }
}

@media only screen and (max-width: 768px) {
    .personal__title {
        padding-inline: 10px;
        margin-bottom: 15px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
    }
}

.personal__catch {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
}

@media only screen and (max-width: 768px) {
    .personal__catch {
        font-size: 22px;
    }
}

.personal__text {
    margin-block: 20px 24px;
    font-size: 16px;
    line-height: 2;
}

@media only screen and (max-width: 768px) {
    .personal__text {
        font-size: 14px;
    }
}

.personal__note {
    font-size: 13px;
    line-height: 1.6;
    color: #00000099;
}

.personal__link {
    text-decoration: underline;
}

.personal__link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url('data:image/svg+xml, <svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 7L13 0M7.44 0.5H13V5.51M5.98 2.5H0.5V12.5H10.5V6.77" stroke="%232635A7" stroke-miterlimit="10" stroke-width="1.5"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: -1px;
  margin-inline: 2px 4px;
}

.personal__link:hover::after {
  background-image: url('data:image/svg+xml, <svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 7L13 0M7.44 0.5H13V5.51M5.98 2.5H0.5V12.5H10.5V6.77" stroke="%232635A7" stroke-opacity="0.4" stroke-miterlimit="10" stroke-width="1.5"/></svg>');
}

.personal__description {
    max-width: initial;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 2;
}

@media only screen and (max-width: 768px) {
    .personal__description {
        font-size: 14px;
    }
}

.personal__list {
    margin-block: 20px 24px;
    list-style: none;
    counter-reset: num;
}

.personal__item {
    font-size: 16px;
    line-height: 2;
    text-indent: -44px;
    padding-left: 44px;

    &::before {
        counter-increment: num;
        content: "（" counter(num) "） ";
    }
}

@media only screen and (max-width: 768px) {
    .personal__item {
        font-size: 14px;
        text-indent: -40px;
        padding-left: 40px;
    }
}

.other {
    padding-top: 90px;
}

@media only screen and (max-width: 768px) {
    .other {
        padding-top: 80px;
    }
}