@charset "UTF-8";

/* 共通部分 -------------------------------------------------------------- */
html {
    font-size: 100%;
    scroll-behavior: smooth; /* スムーズスクロール */
}
body {
    font-style: normal;
    line-height: 1.7;
    color: #4b4b4b
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
img {
    max-width: 100%;
}
.align-center {
    text-align: center;
    padding: 1.5rem 0;
    margin: auto;
    line-height: 2rem;
}
.align-left {
    margin: 1rem 0;
    text-align: left;
    display: inline-block;
}
.headline {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: .5rem;
    margin-bottom: 3rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid #4b4b4b;
}
.headline h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4b4b4b;
    line-height: 1.5;
}
.headline h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4b4b4b;
    line-height: 1.5;
}
.headline img {
    max-width: 60px;
    margin-right: 1rem;
}
.sp {
    display: block;
}
.bold {
    font-weight: bold;
}

/* フォント -------------------------------------------------------------- */
.outfit {
    font-family: "Outfit", "Noto Sans JP", "YuGothic", 'Yu Gothic', 'Yu Gothic UI', 'MS ゴシック', 'MS Pゴシック', 'MS PGothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Arial', sans-serif;
}
.kleeone {
    font-family: "Klee One", serif;
}
.lora {
    font-family: "Lora", serif;
}
.mplus {
    font-family: "M PLUS Rounded 1c", sans-serif;
}

/* iframe --------------------------------------------------------------- */
iframe {
    width: 100%;
}

/* テキスト左右線 --------------------------------------------------------- */
.text-border {
    display: flex;
    align-items: center; /* 垂直中心 */
    justify-content: center; /* 水平中心 */
}
.text-border:before, .text-border:after {
    border-top: 1px solid;
    content: "";
    width: 6.5rem; /* 線の長さ */
    color: #4b4b4b;
}
.text-border:before {
    margin-right: 1rem; /* 文字の右隣 */
}
.text-border:after {
    margin-left: 1rem; /* 文字の左隣 */
}

/* ボタン ---------------------------------------------------------------- */
.btn {
    display: inline-block;
    font-size: 100%;
    font-weight: 500;
    background: #e68d9d;
    border-radius: 10px;
    padding: .75rem 1.5rem;
    transition: 1s;
    letter-spacing: .1rem;
}
.btn:hover {
    opacity: .9;
    scale: 105%;
}

/* スクロールアニメーション ------------------------------------------------- */
.fade-in-first {
    opacity: 0;
	animation-name: fade-in-first;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}
@keyframes fade-in-first {
    0% { opacity: 0;
         transform: translateY(40px); }
    100% { opacity: 1;
         transform: translateY(0); }
}
.fade-in {
	opacity: 0;
	visibility: hidden;
	transition: 1.5s;
	transform: translateY(40px);
}
.fade-in-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ヘッダー -------------------------------------------------------------- */

.header {
    min-height: 320px;
    margin: auto;
    padding: 1rem 1rem 0;
    width: 100%;
    background-position: center top;
    background: linear-gradient(to bottom, transparent 0%, transparent 30%, #fff 100%), url(../images/cover-header-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.header h1 {
    text-align: center;
}
.logo-sp {
    display: block;
    max-width: 230px;
    margin: 1rem auto;
}
.logo-pc {
    display: none;
}

/* ナビゲーションメニュー -------------------------------------------------- */
.gnavi_lists {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.25rem;
}
.gnavi_lists a {
    position: relative;
    color: #fff;
    text-decoration: none;
    transition: 1s;
}
.gnavi_lists a:before {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1.5px;
    background: #fff;
    bottom: -1px;
    visibility: hidden;
    transition: 1s;
    transform: scale(0, 1);
    transform-origin: center top;
}
.gnavi_lists a:hover:before {
    visibility: visible;
    transform: scale(1, 1);
    transform-origin: center top;
}
.gnavi_list {
    transition: 1s;
    position: relative;
}
.dropdown_lists {
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    font-weight: 100;
}

/* ハンバーガーメニュー ---------------------------------------------------- */
.hamburger-menu a {
    color: #4b4b4b;
    padding: 9px 15px 10px 0;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.hamburger-btn {
    position: fixed;
    top: 30px;
    right: 20px;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: .7;
    border: solid 1px #fff;
}
.hamburger-btn span,
.hamburger-btn span:before,
.hamburger-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s;
}
.hamburger-btn span:before {
    bottom: 8px;
}
.hamburger-btn span:after {
    top: 8px;
}
.hamburger-btn.active {
    border: none;
}
.hamburger-btn.active span:before {
    transform: rotate(-45deg);
    background-color: #4b4b4b;
    bottom: 0;
}
.hamburger-btn.active span {
    background-color: rgba(0, 0, 0, 0);/*真ん中の線を透明に*/
}
.hamburger-btn.active span:after {
    transform: rotate(45deg);
    background-color: #4b4b4b;
    top: 0;
}
.drawer-nav-wrapper {
    width: 100%;
    height: 100%;
    padding: 70px 30px 50px;
    position: fixed;
    top: 0;
    right: 0;
    opacity: .9;
    z-index: 1000;
    background: linear-gradient(140deg, #fff, #f7c7d0 90%, #eba8b4 100%);
    transition: all .5s;
    transform: translate(768px);
    overflow: auto;
}
.drawer-nav-wrapper.open {
    transform: translate(0);
}
.drawer-nav {
    display: block;
    position: relative;
    margin-top: 20px;
}
.drawer-nav li {
    border-bottom: solid 1px #4b4b4b;
    list-style: none;
    line-height: 2.5rem;
    height: auto;
    position: relative;
}
.drawer-nav li a {
    font-size: 1.4rem;
    padding-left: 1rem;
}
.drawer-nav span:before {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 3px;
    background-color: #4b4b4b;
    position: absolute;
    right: 11px;
    top: 24px;
    text-align: center;
    opacity: .9;
}
.drawer-nav span:after {
    content: '';
    display: block;
    height: 20px;
    width: 2px;
    border-radius: 3px;
    background-color: #4b4b4b;
    position: absolute;
    right: 20px;
    top: 15px;
    text-align: center;
    opacity: .9;
}
.second-level {
    display: none;
    position: relative;
    margin-left: 0rem;
    z-index: 1001;
}
.second-level li:first-child {
    border-top: solid 1px #4b4b4b;
}
.second-level li:last-child {
    border: none;
}
.second-level li a {
    margin-left: 2rem;
    padding-left: 2rem;
    font-size: 1rem;
}
.second-level-big li a {
    font-size: 1.2rem;
}
.second-level a:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: solid 1px #4b4b4b;
    border-right: solid 1px #4b4b4b;
    transform: rotate(45deg);
    position: absolute;
    left: 5px;
    top: 25px;
}
.touch-btn {
    display: block;
    color: #4b4b4b;
    position: absolute;
    top: .25rem;
    right: 2%;
    z-index: 100;
    width: 50px;
    height: 50px;
    text-align: center;
}

/* パンくずリスト --------------------------------------------------------- */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 1.5rem;
}
.breadcrumb li {
    color: #818181;
}
.breadcrumb li:not(:last-of-type):after {
    content: "›";
    margin: 0 .6em;
    color: #818181;
}
.breadcrumb a {
    color: #818181;
}
.breadcrumb a:hover {
    color: #e68d9d;
    border-bottom: 1px solid #e68d9d;
}

/* トップに戻るボタン ------------------------------------------------------ */
#page-top {
    position: fixed;
    bottom: 25px;
    right: 20px;
    height: 45px;
    width: 45px;
    z-index: 80;
    background-color: #e68d9d;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px #fff;
    border-radius: 50%;
    opacity: .7;
    transition: all .5s ease;
}
#page-top:hover {
    opacity: .5;
}
#page-top i {
    color: #fff;
    font-size: 1rem;
}
.anchor {
    display: block;
    padding-top: 40px;
    margin-top: 40px;
}

/* Home ----------------------------------------------------------------- */
.greeting-main {
    position: relative;
    margin-bottom: 8rem;
}
.greeting-flex p {
    text-align: left;
    color: #555;
    font-size: 1.75rem;
    line-height: 3rem;
    letter-spacing: .2rem;
    font-weight: 400;
    margin: -3rem 0 2rem 3rem;
}
.scrolldown {
    position: absolute;
    bottom: -20%;
    right: 50%;
    animation: arrowmove 2s ease-in-out infinite;
}
@keyframes arrowmove {
    0% {bottom: -20%}
    50% {bottom: -18%}
    100% {bottom: -20%}
}
.scrolldown span {
    position: absolute;
    left: -30px;
    bottom: 30px;
    color: #4b4b4b;
    font-size: 80%;
    writing-mode: vertical-rl;
}
.scrolldown:before {
    content: "";
    position: absolute;
    bottom: 5px;
    right: -6px;
    width: 1px;
    height: 20px;
    background: #4b4b4b;
    transform: skewX(-31deg);
}
.scrolldown:after {
    content:"";
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 1px;
    height: 85px;
    background: #4b4b4b;
}
.portrait {
    max-width: 100%;
    width: 300px;
}
.greeting p {
    margin: 2rem auto 4rem;
    font-weight: 600;
}
.profile h2 {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: .1rem;
}
.profile p {
    margin-top: 2rem;
    letter-spacing: .1rem;
    font-weight: 600;
    font-size: 95%;
}
.circle1 {
    position: relative;
    overflow: hidden;/* はみ出た部分非表示 */
    width: 100%;
}
.circle-item-1 {
    position: absolute;
    top: 4%;
    right: -15%;
    transform-origin: 50% 48%;
    animation-name: rotate-item;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    cursor: pointer;
}
.circle-item-1 div {
    transition: 2s;
}
.circle-item-1:hover div {
    transform: translateY(10%);
}
.circle-item-2 {
    position: absolute;
    top: 37%;
    left: -15%;
    transform-origin: 50% 48%;
    animation-name: rotate-item;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: reverse;
    cursor: pointer;
}
.circle-item-2 div {
    transition: 2s;
}
.circle-item-2:hover div {
    transform: translateY(10%);
}
.circle-item-3 {
    position: absolute;
    top: 67%;
    right: -15%;
    transform-origin: 50% 52%;
    animation-name: rotate-item;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    cursor: pointer;
}
.circle-item-3 div {
    transition: 2s;
}
.circle-item-3:hover div {
    transform: translateY(10%);
}
.circle-round-1 {
    position: relative;
    border-radius: 50%;
    width: 50vw;
    min-width: 22rem;
    height: 50vw;
    min-height: 22rem;
    background: linear-gradient(10deg, #b5b5e8, #eba8b4 100%);
    opacity: .2;
    filter: blur(25px);
}
.circle-round-2 {
    position: relative;
    border-radius: 50%;
    width: 50vw;
    min-width: 22rem;
    height: 50vw;
    min-height: 22rem;
    background: linear-gradient(90deg, #e68d9d, #b5b5e8 100%);
    opacity: .2;
    filter: blur(25px);
}
.circle-round-3 {
    position: relative;
    border-radius: 50%;
    width: 50vw;
    min-width: 22rem;
    height: 50vw;
    min-height: 22rem;
    background: linear-gradient(140deg, #b5b5e8, #eba8b4 100%);
    opacity: .2;
    filter: blur(25px);
}
.circle2 {
    position: relative;
    overflow: hidden;/* はみ出た部分非表示 */
    width: 100%;
    height: 100rem;
}
/*
.circle-border {
    position: relative;
    top: 5%;
    text-align: center;
    border-bottom: 1px solid;
    width: 20rem;
    margin: auto;
    color: #4b4b4b;
}
*/
.circle-p-0 {
    position: relative;
    top: 2%;
}
.circle-p-0 h2 {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: .1rem;
}
.circle-p-0 p {
    margin-top: 3.5rem;
    text-align: center;
    line-height: 2rem;
    font-size: 95%;
    font-weight: 600;
}
.circle-item-4 {
    position: absolute;
    top: 23%;
    right: -15%;
    transform-origin: 50% 48%;
    animation-name: rotate-item;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.circle-item-4 div {
    transition: 1.7s;
}
.circle-item-4:hover div {
    transform: translateY(8%);
    opacity: 1;
}
.circle-item-5 {
    position: absolute;
    top: 49%;
    left: -15%;
    transform-origin: 50% 48%;
    animation-name: rotate-item;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}
.circle-item-5 div {
    transition: 1.7s;
}
.circle-item-5:hover div {
    transform: translateY(8%);
    opacity: 1;
}
.circle-item-6 {
    position: absolute;
    top: 73%;
    right: -15%;
    transform-origin: 50% 52%;
    animation-name: rotate-item;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.circle-item-6 div {
    transition: 1.7s;
}
.circle-item-6:hover div {
    transform: translateY(8%);
    opacity: 1;
}
.circle-round-4 {
    position: relative;
    border-radius: 50%;
    width: 50vw;
    min-width: 22rem;
    max-width: 30rem;
    height: 50vw;
    min-height: 22rem;
    max-height: 30rem;
    background: linear-gradient(10deg, #b5b5e8, #eba8b4 100%);
    opacity: .7;
    filter: blur(25px);
}
.circle-round-5 {
    position: relative;
    border-radius: 50%;
    width: 50vw;
    min-width: 22rem;
    max-width: 30rem;
    height: 50vw;
    min-height: 22rem;
    max-height: 30rem;
    background: linear-gradient(90deg, #e68d9d, #b5b5e8 100%);
    opacity: .7;
    filter: blur(25px);
}
.circle-round-6 {
    position: relative;
    border-radius: 50%;
    width: 50vw;
    min-width: 22rem;
    max-width: 30rem;
    height: 50vw;
    min-height: 22rem;
    max-height: 30rem;
    background: linear-gradient(140deg, #b5b5e8, #eba8b4 100%);
    opacity: .7;
    filter: blur(25px);
}
.circle-p4 {
    position: absolute;
    top: 30%;
    right: 35%;
    color: #fff;
    opacity: .9;
    animation-name: rotate-item-p;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.circle-p5 {
    position: absolute;
    top: 30%;
    left: 37%;
    color: #fff;
    opacity: .9;
    animation-name: rotate-item-p;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}
.circle-p6 {
    position: absolute;
    top: 34%;
    left: 35%;
    color: #fff;
    opacity: .9;
    animation-name: rotate-item-p;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.circle-p-normal {
    font-size: 1.75rem;
    line-height: 2.5rem;
    opacity: 1;
}
.circle-p-normal i {
    font-size: 1.75rem;
}
.circle-p-small {
    font-size: 1rem;
    font-weight: 600;
    line-height: 2.5rem;
    padding-right: 1rem;
    opacity: 1;
}

/* 回転アニメーション */
@keyframes rotate-item {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes rotate-item-p {
    0%   { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

/* About ---------------------------------------------------------------- */
.about {
    max-width: 1000px;
    padding: 0 1.5rem;
    margin: auto;
    line-height: 2rem;
    color: #4b4b4b;
    font-weight: 400;
    letter-spacing: .1rem;
}
.about p {
    margin-bottom: 3rem;
    font-size: 90%;
}
.about a {
    color: #e68d9d;
}
.about a:hover {
    border-bottom: 1px solid #e68d9d;
}
.breadcrumb a {
    color: #818181;
}
.outline {
    margin-bottom: 8rem;
}
.about section {
    margin-bottom: 8rem;
}
.outline p {
    margin-bottom: 3rem;
}
.outline ol {
    padding: 2rem 2rem 1rem 3rem;
    border: 2px dashed #e68d9d;
    border-radius: 70px 10px;
}
.outline li {
    list-style-type: decimal;
    list-style-position: inside;
    cursor: pointer;
    font-size: 95%;
}
.outline a {
    text-decoration: none;
    color: #4b4b4b;
}
.outline li:hover a {
    color: #e68d9d;
    border-bottom: 1px solid #e68d9d;
}
.outline .asterisk {
    margin-top: 1rem;
    text-align: right;
    font-size: .8rem;
}
.about-footer {
    display: flex;
    justify-content: space-between;
    padding-top: .5rem;
    border-top: 1px solid #4b4b4b;
}
.about-footer a {
    color: #e68d9d;
}
aside {
    padding: 1.5rem;
}
.aside-profile {
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 2rem;
    border: 2px dashed #e68d9d;
    border-radius: 70px 10px;
    background: linear-gradient(140deg, #fff 50%, #ffeaee 95%, #ffe5ea 100%);
}
.aside-profile h4 {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: .5rem;
}
.aside-profile a {
    color: #e68d9d;
}
.aside-profile p {
    font-size: 90%;
    letter-spacing: .1rem;
}
.aside-flex {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 1rem;
}
.aside-flex img {
    width: 100px;
    height: auto;
    margin-right: 1.5rem;
}
.aside-greeting {
    padding: 1.5rem .5rem 0;
    border-top: 2px dashed rgb(230, 141, 157);
}
.aside-outline {
    display: none;
}

/* Skills ---------------------------------------------------------------- */
.skills {
    max-width: 1000px;
    padding: 0 1.5rem;
    margin: auto;
    line-height: 2rem;
    color: #4b4b4b;
    font-weight: 400;
    letter-spacing: .1rem;
}
.skills p {
    font-size: 90%;
}
.skills section {
    margin-bottom: 8rem;
}
#skills-tools p {
    font-size: 85%;
}
#skills-tools .headline p {
    font-size: 80%;
    padding-right: 1rem;
}
.skills-grid {
    display: grid;
    row-gap: 2.5rem;
    column-gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
}
.skills-flex {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}
.skills-flex img {
    max-width: 80px;
    max-height: 80px;
    margin-right: .5rem;
}
#skills-qualifications .headline p {
    font-size: 80%;
    padding-right: 1rem;
}
#skills-tools .toolname {
    font-size: 1.2rem;
    color: #e68d9d;
}
.skills-table {
    border-collapse: collapse;
}
.skills-table td {
    vertical-align: top;
    padding: .5rem 0;
    font-size: 90%;
}
.skills-table .year {
    min-width: 58px;
    text-align: right;
}
.skills-table .month {
    min-width: 53px;
    text-align: right;
    padding-right: 1rem;
}
.skills-table .qualification {
    position: relative;
    text-align: left;
    border-left: 2px #ddd solid;
    padding-left: 1rem;
}
.skills-table .qualification:before {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 16px;
    left: -9px;
    width: 15px;
    height: 15px;
    background: #e68d9d;
    border: 2px solid #fff;
}
.skills-table span {
    font-size: 80%;
}
.table-brank td {
    padding: 2rem 0;
}
.table-brank .qualification {
    position: relative;
    text-align: left;
    border-left: 2px #ddd dashed;
    padding-left: 1rem;
}
.table-brank .qualification:before {
    display: none;
}
.qualification-disc p {
    margin-top: 3rem;
}
#skills-strength div {
    margin: 2rem 0;
}
#skills-strength .strength {
    font-size: 100%;
}
.strength {
    font-weight: 600;
}
.strength span {
    color: #e68d9d;
}
.strength-disc {
    margin: .5rem 0 3rem;
}


/* Works - Home ---------------------------------------------------------- */
.works {
    max-width: 1000px;
    padding: 0 1.5rem;
    margin: auto;
    line-height: 2rem;
    color: #4b4b4b;
    font-weight: 400;
    letter-spacing: .1rem;
}
.works section {
    margin-bottom: 6rem;
}
.works p {
    font-size: 90%;
}
.works .outline ol {
    font-size: 105%;
}
.works a {
    color: #4b4b4b;
    transition: .3s;
}
.works a:hover {
    color: #e68d9d;
}
.breadcrumb a {
    color: #818181;
}
.grid {
    display: grid;
    row-gap: 1.5rem;
    column-gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
}
.grid-item {
    margin: .5rem 0rem;
}
.grid-item img {
    /* aspect-ratio: 4 / 3; */
    object-fit: cover;
    border-radius: 16px;
    transition: .5s;
    width: 400px;
    object-position: 0 0;
}
.grid-item img:hover {
    filter: brightness(.9);
}
.grid-item p {
    font-size: 90%;
}
.home-contact {
    text-decoration: none;
}
.home-contact a {
    color: #fff;
}

/* Works - 個別 ---------------------------------------------------------- */
.works-desc {
    max-width: 1000px;
    padding: 0 1.5rem;
    margin: auto;
    line-height: 2rem;
    color: #4b4b4b;
    font-weight: 400;
    letter-spacing: .1rem;
}
.works-desc .headline h2 {
    font-size: 1.3rem;
}
.works-desc section {
    margin-bottom: 4rem;
}
.works-desc p {
    font-size: 90%;
}
.works-img {
    text-align: right;
}
.works-img img {
    /* aspect-ratio: 4 / 3; */
    border-radius: 16px;
    object-fit: cover;
}
.works-img a {
    color: #e68d9d;
    font-size: 90%;
}
.works-img img:hover .works-url {
    border-bottom: 1px solid #e68d9d;
}
.works-img:hover .works-url {
    border-bottom: 1px solid #e68d9d;
}
.works-desc-p {
    margin: 4rem 0 3rem;
}
.themecolor {
    text-align: center;
    font-size: 150%;
    margin-top: .5rem;
}
.works-desc-div div {
    margin: 1rem 0 1rem .5rem;
}
.works-desc-div span {
    color: #e68d9d;
}
.indent {
    padding-left: 1rem;
}
.aside-works {
    display: none;
}

/* Contact -------------------------------------------------------------- */
.contact {
    max-width: 1000px;
    padding: 0 1.5rem;
    margin: auto;
    line-height: 2rem;
    color: #4b4b4b;
    font-weight: 400;
    letter-spacing: .1rem;
}

/* フッター -------------------------------------------------------------- */
footer {
    height: 150px;
    margin: auto;
    background-position: center top;
    background: linear-gradient(to top, transparent 0%, transparent 40%, #fff 100%), url(../images/cover-footer.png);
    background-size: cover;
    background-repeat: no-repeat;
    mix-blend-mode: multiply;
}
.copyright {
    font-family: "Outfit", sans-serif;
    text-align: center;
    margin-top: 3rem;
    padding-top: 6rem;
    font-weight: normal;
    color: #fff;
}

/* デスクトップ版 (768pxより大きい時)---------------------------------------- */
@media (min-width: 768px) {

    /* 共通部分 ---------------------------------------------------------- */
    html {
        font-size: 100%;
    }
    .headline h2 {
        font-size: 2rem;
    }
    .headline h3 {
        font-size: 1.5rem;
    }
    .headline img {
        max-width: 80px;
    }
    .sp {
        display: none;
    }

    /* テキスト左右線 --------------------------------------------------------- */
    .text-border:before, .text-border:after {
        width: 13rem;
    }

    /* ヘッダー ---------------------------------------------------------- */
    .header {
        position: fixed;
        z-index: 70;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        min-height: 130px;
        margin: auto;
        padding: .5rem 1rem 0;
        width: 100%;
        background-position: center;
        background: url(../images/cover-header-pc.png);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .header h1 {
        text-align: left;
    }
    .logo-sp {
        display: none;
    }
    .logo-pc {
        display: block;
        max-width: 250px;
        margin: 0 0 1rem 3rem;
    }

    /* ナビゲーションメニュー ---------------------------------------------- */
    .gnavi_lists {
        gap: 2.5rem;
        margin-top: 1rem;
        margin-right: 1rem;
    }
    .gnavi_lists a {
        padding: 0 .5rem;
    }
    .dropdown_list a {
        padding: 0;
    }

    /* ハンバーガーメニュー ---------------------------------------------------- */
    .hamburger-menu {
        display: none;
    }

    /* パンくずリスト --------------------------------------------------------- */
    .breadcrumb {
        padding-top: 170px;
    }

    /* トップに戻るボタン -------------------------------------------------- */
    #page-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        height: 55px;
        width: 55px;
    }
    #page-top i {
        font-size: 1.5rem;
    }
    .anchor {
        padding-top: 120px;
        margin-top: -120px;
    }

    /* Home ------------------------------------------------------------- */
    .greeting-main {
        height: 100vh;
        margin-bottom: 0;
        padding: 0;
    }
    .greeting-flex {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 40px;
        height: 95vh;
    }
    .greeting-flex p {
        font-size: 2.25rem;
        margin: 0;
    }
    .greeting-flex img {
        width: 400px;
    }
    .scrolldown {
        position: absolute;
        bottom: 20%;
        right: 50%;
    }
    @keyframes arrowmove {
        0% {bottom: 17%}
        50% {bottom: 20%}
        100% {bottom: 17%}
    }
    .portrait {
        max-width: 100%;
    }
    .greeting p {
        margin-top: 0;
        font-size: 105%;
        line-height: 2.5rem;
    }
    .profile p {
        font-size: 105%;
        line-height: 2.5rem;
    }
    .circle-item-1 {
        top: 5%;
        right: -5%;
    }
    .circle-item-2 {
        top: 30%;
        left: -8%;
    }
    .circle-item-3 {
        top: 60%;
        right: 10%;
    }
    .circle-round-1 {
        min-width: 30rem;
        min-height: 30rem;
    }
    .circle-round-2 {
        min-width: 30rem;
        min-height: 30rem;
    }
    .circle-round-3 {
        min-width: 30rem;
        min-height: 30rem;
    }
    .circle-item-4 {
        top: 25%;
        right: -5%;
    }
    .circle-item-5 {
        top: 40%;
        left: -8%;
    }
    .circle-item-6 {
        top: 60%;
        right: 15%;
    }
    .circle-p4 {
        top: 34%;
        right: 38%;
    }
    .circle-p5 {
        top: 33%;
        left: 39%;
    }
    .circle-p6 {
        top: 37%;
        left: 36%;
    }
    .circle-p-normal {
        font-size: 2rem;
    }
    .circle-p-0 p {
        font-size: 105%;
        line-height: 2.5rem;
    }
    .circle-border {
        width: 33rem;
    }

    /* About ------------------------------------------------------------ */
    .about {
        padding: 0 3rem;
    }
    .about p {
        font-size: 100%;
    }
    .outline ol {
        margin: 0 3rem;
        width: 600px;
    }
    .outline li {
        font-size: 100%;
    }
    .outline .asterisk {
        width: 600px;
    }
    .aside-profile h4 {
        font-size: 2rem;
    }
    .aside-profile p {
        font-size: 100%;
    }

    /* Skills ----------------------------------------------------------- */
    .skills {
        padding: 0 3rem;
    }
    .skills p {
        font-size: 100%;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #skills-tools .toolname {
        font-size: 1.3rem;
    }
    .skills-table {
        margin-left: 1.5rem;
    }
    .skills-table td {
        font-size: 100%;
    }
    #skills-strength .strength {
        font-size: 110%;
    }

    /* Works - Home ---------------------------------------------------- */
    .works {
        padding: 0 3rem;
    }
    .works section {
        margin-bottom: 8rem;
    }
    .works p {
        font-size: 100%;
    }
    .grid {
        row-gap: 2rem;
        column-gap: 4rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-item {
        margin: 0;
    }

    /* Works - 個別 ---------------------------------------------------------- */
    .works-desc {
        padding: 0 3rem;
    }
    .works-desc .headline h2 {
        font-size: 1.7rem;
        font-weight: 600;
    }
    .works-desc p {
        font-size: 100%;
    }
    .themecolor {
        font-size: 180%;
    }

    /* Contact -------------------------------------------------------------- */
    .contact {
        padding: 0 3rem;
    }

    /* フッター -------------------------------------------------------------- */
    footer {
        height: 130px;
    }
    .copyright {
        padding-top: 5rem;
    }

}

/* デスクトップ版  (1200pxより大きい時) ------------------------------------- */
@media (min-width: 1200px) {

    /* ヘッダー -------------------------------------------------------------- */

    /* ナビゲーションメニュー -------------------------------------------------- */
    .gnavi_lists {
        gap: 3.5rem;
        margin-right: 8rem;
    }

    /* Home ----------------------------------------------------------------- */
    .circle-item-1 {
        top: 5%;
        right: 5%;
    }
    .circle-item-2 {
        top: 20%;
        left: 5%;
    }
    .circle-item-3 {
        top: 53%;
        right: 30%;
    }
    .circle-round-1 {
        max-width: 35rem;
        max-height: 35rem;
    }
    .circle-round-2 {
        max-width: 35rem;
        max-height: 35rem;
    }
    .circle-round-3 {
        max-width: 35rem;
        max-height: 35rem;
    }
    .circle-item-4 {
        top: 15%;
        right: 5%;
    }
    .circle-item-5 {
        top: 30%;
        left: 5%;
    }
    .circle-item-6 {
        top: 55%;
        right: 30%;
    }
    .circle-round-4 {
        max-width: 35rem;
        max-height: 35rem;
    }
    .circle-round-5 {
        max-width: 35rem;
        max-height: 35rem;
    }
    .circle-round-6 {
        max-width: 35rem;
        max-height: 35rem;
    }
    .circle-p-normal {
        font-size: 2.25rem;
    }
    .circle-p4 {
        top: 36%;
        right: 38%;
    }
    .circle-p5 {
        top: 37%;
        left: 39%;
    }
    .circle-p6 {
        top: 40%;
        left: 37%;
    }

    /* About ---------------------------------------------------------------- */
    .row-wrapper {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .row {
        display: flex;
        justify-content: space-around;
        margin: 0 auto;
    }
    main {
        width: calc(100% - 330px);
    }
    .about {
        margin: 0;
        padding-right: 80px;
    }
    aside {
        padding: 280px 0 0 0 ;
        width: 360px;
    }
    .aside-profile {
        padding: 1.5rem;
        margin-bottom: 0;
    }
    .aside-profile p {
        letter-spacing: 0;
    }
    .aside-profile h4 {
        font-size: 1.75rem;
    }
    .aside-profile p {
        font-size: .9rem;
        color: #4b4b4b;
        line-height: 2rem;
        font-weight: 400;
    }
    .aside-flex {
        display: block;
        text-align: center;
    }
    .aside-flex img {
        width: 250px;
        margin: auto;
    }
    .aside-greeting {
        width: 270px;
        text-align: justify;
        margin: 0 auto;
        padding: 1rem 0;
    }
    .aside-span {
        display: block;
        height: 3rem;
    }
    .aside-outline {
        display: block;
        position: sticky;
        top: 150px;
        border: 2px dashed #e68d9d;
        border-radius: 70px 10px;
        padding: 1rem 3rem;
        max-width: 700px;
        margin: 0 auto;
        background: linear-gradient(140deg, #fff 30%, #ffeaee 65%, #ffe5ea 100%);
    }
    .aside-outline h5 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-left: -10px;
        text-align: center;
        margin-bottom: .5rem;
    }
    .aside-outline ol {
        border-top: 2px dashed #e68d9d;
        padding: 1.5rem 0 1rem;
    }
    .index {
        position: relative;
    }
    .index:before { /* 目次の縦線 */
        position: absolute;
        top: 40px;
        bottom: 30px;
        left: 3px;
        width: 2px;
        content: "";
        background: #ddd;
    }
    .toc {
        padding-left: 1.5rem;
        position: relative;
        box-sizing: border-box;
        line-height: 2rem;
        font-size: 1rem;
        cursor: pointer;
    }
    .toc a.not-bold {
        color: #818181;
    }
    .not-active, .active {
        position: relative;
    }
    .not-active:before { /* 目次の丸 */
        content: '';
        position: absolute;
        top: 12px;
        left: -2px;
        border-radius: 50%;
        width: 11px;
        height: 11px;
        background: #ffdae1;
        border: 2px solid #fff;
    }
    .toc:hover a {
        color: #e68d9d;
        border-bottom: 1px solid #e68d9d;
    }
    .toc a.bold {
        color: #4b4b4b;
        font-weight: 600;
    }
    .active:before { /* 目次の丸 */
        content: '';
        position: absolute;
        top: 12px;
        left: -2px;
        border-radius: 50%;
        width: 11px;
        height: 11px;
        background: #e68d9d;
        border: 2px solid #fff;
        z-index: 60;
    }

    /* Skills ----------------------------------------------------------- */
    .skills {
        margin: 0;
        padding-right: 80px;
    }

    /* Works - Home ------------------------------------------------------ */
    .works {
        margin: 0;
        padding-right: 80px;
    }
    .grid {
        column-gap: 4rem;
    }

    /* Works - 個別 ------------------------------------------------------ */
    .works-desc {
        margin: 0;
        padding-right: 80px;
    }

    .aside-works {
        display: block;
        margin: 0 auto;
    }
    .aside-works div {
        margin: 2.5rem 0;
    }
    .aside-works img {
    /* aspect-ratio: 4 / 3; */
        object-fit: cover;
        border-radius: 16px;
        transition: .5s;
    }
    .aside-works a {
        color: #4b4b4b;
        text-align: center;
        transition: .3s;
    }
    .aside-works a:hover img {
        filter: brightness(.9);
    }
    .aside-works a:hover p {
        color: #e68d9d;
    }
    .aside-works p {
        color: #4b4b4b;
        font-size: .95rem;
        font-weight: 400;
        letter-spacing: .1rem;
        margin-top: .5rem;
    }

}