@charset "utf-8";

/*全体の設定 start---------------------------------------------------------------------------*/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px;
}

* html .clearfix {
    height: 1px;
}

html {
    scroll-behavior: smooth;
    color: #000;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    line-height: 1.7em;
    list-style: none;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
}


a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: none;

}

a:hover {
    opacity: 0.7;
}

/*全体の設定 start---------------------------------------------------------------------------*/

/*ヘッダー start---------------------------------------------------------------------------*/
header {
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 10px;
}

.flex_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 70px;
}

h1 {
    font-size: 2rem;
    margin-left: 20px;
}

header a,
.more a {
    position: relative;
}

header a::after,
.more a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 3px;
    background-color: #c37790;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

.more a::after {
    width: 200%;
}

header a:hover::after,
.more a:hover::after {
    transform: scale(1, 1);
}

header .menu_pc {
    display: flex;
}

header li {
    margin-right: 30px;
}

h1 a::after {
    content: none;
    transform: none;

}

h1 a:hover::after {
    transform: none;
}

@media screen and (max-width: 799px) {
    h1 {
        font-size: 1.5rem;
    }
}

/*ハンバーガーメニュー start---------------------------------------------------------------------------*/
.nav {
    display: none;
}

@media screen and (max-width: 799px) {
    ul.menu_pc {
        display: none;
    }

    .nav {
        display: block;
    }

    .drawer_hidden {
        display: none;
    }

    .drawer_open {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 100;
        cursor: pointer;
    }

    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
        content: '';
        display: block;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #333;
        transition: 0.5s;
        position: absolute;
    }

    .drawer_open span:before {
        bottom: 8px;
    }

    .drawer_open span:after {
        top: 8px;
    }

    #drawer_input:checked~.drawer_open span {
        background: rgba(255, 255, 255, 0);
    }

    #drawer_input:checked~.drawer_open span::before {
        bottom: 0;
        transform: rotate(45deg);
    }

    #drawer_input:checked~.drawer_open span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .nav_content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        /* メニューを画面の外に飛ばす */
        z-index: 99;
        background: #fff;
        transition: .5s;
    }

    .nav_list {
        margin-top: 100px;
        list-style: none;
        text-align: center;
    }

    .nav_item {
        width: 100%;
        height: 50px;
        margin-bottom: 10px;
    }

    .nav_item a {
        display: inline-block;
        width: 100%;
        height: 50px;
        padding-top: 15px;
    }

    #drawer_input:checked~.nav_content {
        left: 0;
    }
}

/*スライダー start---------------------------------------------------------------------------*/

#slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

#slider img {
    width: 1200px;
    height: 600px;
    object-fit: cover;
}

.slider {
    overflow: hidden;
}

@keyframes zoomUp {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
        /* 拡大率 */
    }
}

.add-animation {
    animation: zoomUp 10s linear 0s normal both;
}

@media screen and (max-width: 799px) {
    #slider {
        position: relative;
        width: 100%;
        height: 400px;
    }

    #slider img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

/*TOPページ「ABOUT,OTHER」 start---------------------------------------------------------------------------*/
#about,
#other {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    text-align: center;
}

h2.about::after,
h2.other::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: #c37790;
    position: absolute;
    bottom: 0;
    left: calc(50% - 33px)
}

h2.about::before {
    content: "わたしのこと";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 53px);
    font-size: 1rem;
    font-weight: normal;
}

h2.other::before {
    content: "ほかにも";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 38px);
    font-size: 1rem;
    font-weight: normal;
}

.flex_about,
.flex_other {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.flex_about .about_1,
.flex_other .other_1 {
    width: 450px;
    margin: 140px 140px 140px 0;
}

.about_1 p,
.other_1 p {
    margin-top: 60px;
}

.more {
    margin-top: 30px;
    text-align: right;
}

.more.back {
    text-align: center;
    margin-top: 50px;
}

.more a {
    font-weight: bold;
}

#about img,
#other img {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

@media screen and (max-width: 799px) {

    #about,
    #works,
    #other {
        padding: 0 20px;
    }

    .flex_about,
    .flex_other {
        display: block;
        text-align: center;
        width: auto;
    }

    .flex_about .about_1,
    .flex_other .other_1 {
        width: auto;
        margin: 0;
    }

    h2 {
        font-size: 2rem;
        margin-top: 30px;
    }

    .about_1 p,
    .other_1 p {
        text-align: left;
    }

    .more {
        text-align: center;
        margin-bottom: 20px;
    }

    h2.about::before {
        bottom: -45px;
        left: calc(50% - 45px);
        font-size: 0.8rem;
    }

    h2.other::before {
        bottom: -45px;
        left: calc(50% - 30px);
        font-size: 0.8rem;
    }
}

/*TOPページ「WORKS」 start---------------------------------------------------------------------------*/
h2.works {
    max-width: 800px;
    margin: 0 auto;
    font-size: 2.5rem;
    position: relative;
}

h2.works::after {
    content: "制作したもの";
    display: inline-block;
    position: absolute;
    font-size: 1rem;
    font-weight: normal;
    margin-left: 20px;
}

.wrap_works {
    display: flex;
    width: 100%;
    background-color: rgba(197, 197, 197, 0.5);
    height: 400px;
    align-items: center;
}

#works p {
    max-width: 800px;
    margin: 30px auto 10px auto;
}

#works .more {
    max-width: 800px;
    margin: 0 auto;
}

.flex_works {
    max-width: 1000px;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-around;
}

.content_works {
    width: 300px;
    height: 250px;
    margin-right: 50px;
    position: relative;
    overflow: hidden;
}


.content_works .icon {
    position: absolute;
    top: 0;
    left: 0;
}

.content_works .icon img {
    width: 50px;
    height: 50px;
}

.content_works:last-child {
    margin: 0;
}

.content_works img {
    width: 300px;
    height: 250px;
    object-fit: cover;
    transition: 1s all;
}

.content_works img:hover {
    transform: scale(1.2, 1.2);
    transition: 1s all;
}

@media screen and (max-width: 799px) {
    h2.works {
        font-size: 2rem;
        margin-top: 30px;
    }

    h2.works::after {
        margin: 0;
        font-size: 0.8rem;
        position: static;
    }

    .wrap_works {
        background-color: transparent;
        height: auto;
    }

    .content_works {
        margin: 0 0 20px 0;
    }

    .flex_works {
        display: block;
    }
}

/*footer start---------------------------------------------------------------------------*/
#footer {
    height: 80px;
    background-color: #c5c5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 170px;
}

@media screen and (max-width: 799px) {
    #footer {
        margin-top: 100px;
    }

    #footer p {
        font-size: 0.7rem;
    }
}

/*ABOUTページ start---------------------------------------------------------------------------*/
#catch {
    height: 300px;
    margin-bottom: 30px;
}

#catch img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.content_skills img.web {
    width: 180px;
    height: 130px;
}

.content_skills img.cording {
    width: 180px;
    height: 100px;
}

.content_skills img.graphic {
    width: 95px;
    height: 150px;
}

h2.skills::after,
h2.life::after,
h2.like::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: #c37790;
    position: absolute;
    bottom: 0;
    left: calc(50% - 33px)
}

h2.skills::before {
    content: "できること";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 45px);
    font-size: 1rem;
    font-weight: normal;
}

h2.life::before {
    content: "じぶんのれきし";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 53px);
    font-size: 1rem;
    font-weight: normal;
}

h2.like::before {
    content: "すきなこと・もの";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 68px);
    font-size: 1rem;
    font-weight: normal;
}

.about_1.about {
    margin-right: 100px;
}

.about_1.about h3 {
    font-size: 1.7rem;

}

.about_1.about h3::after {
    content: "かじた かやめ";
    display: inline-block;
    font-size: 0.8rem;
    font-weight: normal;
}

.about_1.about p {
    margin-top: 15px;
}

#skills .wrap_skills {
    width: 100%;
    margin-top: 100px;
    background-color: rgba(197, 197, 197, .5);
    padding: 90px 0;
}

#skills .flex_skills {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
}

.content_skills {
    text-align: center;
    margin-right: 25px;
}

.content_skills:last-child {
    margin-right: 0;
}

.skills_text {
    text-align: left;
    display: inline-block;
}

.skills_title {
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
}

.skills_img {
    display: flex;
    height: 150px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
}

.flex_slills2 {
    display: flex;
    max-width: 800px;
    justify-content: space-between;
    margin: 60px auto;
}

.skillmeter_title,
.strength_title {
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: solid 2px #000;
    margin-bottom: 20px;
    width: 160px;
}

.flex_skillmeter {
    display: flex;
}

.flex_skillmeter .skillmeter2 {
    margin-left: 80px;
}

.skillmeter2 li {
    color: #c37790;
}

#life ul.life {
    margin: 100px auto;
    max-width: 800px;
}

#life ul.life li {
    position: relative;
    border-left: solid 2px #77bfc3;
    padding: 5px 0 5px 30px;
}

#life ul.life li::before {
    content: "●";
    position: absolute;
    left: -12px;
    display: inline-block;
    font-size: 1.5rem;
    color: #77bfc3;
}

.flex_like {
    display: flex;
    max-width: 660px;
    justify-content: space-between;
    margin: 100px auto;
    border: solid 2px #c37790;
    padding: 30px 70px;
}

.flex_like ul.like li {
    list-style: square;
}

.flex_like ul.like li span {
    font-size: 0.8rem;
}

@media screen and (max-width: 799px) {
    #catch {
        height: 170px;
        margin-bottom: 30px;
    }

    #catch img {
        height: 170px;
        width: 100%;
        object-fit: cover;
    }

    .about_1.about {
        margin-right: 0;
        margin-top: 80px;
    }

    .about_1.about h3 {
        font-size: 1.5rem;
    }

    h2.skills::before {
        bottom: -45px;
        left: calc(50% - 38px);
        font-size: 0.8rem;
    }

    #skills .flex_skills {
        display: block;
    }

    #skills .wrap_skills {
        width: auto;
        padding: 40px 30px;
        margin-top: 80px;
    }

    .content_skills {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .skills_img {
        margin-bottom: 20px;
    }

    .content_skills img.web {
        width: 140px;
        height: auto;
        object-fit: cover;
    }

    .content_skills img.cording {
        width: 155px;
        height: auto;
        object-fit: cover;
    }

    .content_skills img.graphic {
        width: 85px;
        height: auto;
        object-fit: cover;
    }

    .flex_slills2 {
        display: block;
        text-align: center;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .skillmeter,
    .strength {
        margin-bottom: 40px;
    }

    .flex_skillmeter {
        justify-content: center;
    }

    .strength {
        text-align: center;
    }

    ul.strength {
        text-align: left;
        display: inline-block;
    }

    #life ul.life {
        margin-top: 80px;
        width: auto;
    }

    #life {
        padding: 0 20px;
    }

    h2.life::before {
        bottom: -45px;
        left: calc(50% - 53px);
        font-size: 0.8rem;
    }

    .flex_like {
        width: auto;
        margin-top: 80px;
        padding: 15px;
    }

    ul.like {
        font-size: 0.8rem;
    }

    ul.like li span.small {
        font-size: 0.6rem;
    }

    #like {
        padding: 0 10px;
    }

    .flex_like {
        width: auto;
        margin-top: 80px;
        padding: 15px;
    }

    .flex_like ul.like li {
        list-style: none;
    }
}

/*WORKSページ start---------------------------------------------------------------------------*/
.web_title h3 {
    max-width: 1000px;
    text-align: left;
    border-bottom: solid 3px #000;
    width: 70px;
}

.web_title {
    max-width: 1000px;
    margin: 100px auto 20px auto;
}

h2.works_2::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: #c37790;
    position: absolute;
    bottom: 0;
    left: calc(50% - 33px)
}

h2.works_2::before {
    content: "せいさくしたもの";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 68px);
    font-size: 1rem;
    font-weight: normal;
}

.works-box {
    width: 320px;
    height: 200px;
    margin: 0 20px 20px 0;
    position: relative;
    overflow: hidden;
}

.works-box:last-child {
    margin-right: 0;
}

.works-box img {
    width: 320px;
    height: 200px;
    object-fit: cover;
}

.flex_works.box {

    justify-content: flex-start;
}

.works-hover-main {
    text-align: center;
    padding-top: 80px;
    color: #000;
}

.works-box-hover {
    width: 290px;
    height: 180px;
    position: absolute;
    top: 10px;
    left: 15px;
    opacity: 0;
    background-color: rgba(256, 256, 256, 0.7);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.works-box:hover .works-box-hover {
    opacity: 1;
}

/*WORKS_3ページ start---------------------------------------------------------------------------*/
h2.works_3::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: #c37790;
    position: absolute;
    bottom: 0;
    left: calc(50% - 33px)
}

h2.works_3 {
    margin: 60px 0;
}

.works_img {
    width: 700px;
    height: 450px;
    margin: 0 auto 0 auto;
}

.works_img img {
    width: 700px;
    height: 450px;
    object-fit: cover;
}

#works_3 table {
    max-width: 700px;
    margin: 60px auto 0 auto;
    border-collapse: collapse;
}

#works_3 tr:nth-child(odd) {
    background-color: rgba(197, 197, 197, 0.5);
}

th {
    padding: 15px;
    width: 160px;
    text-align: left;
    padding-left: 10px;
    border-right: solid 1px #000;
}

td {
    padding: 15px;
}

td.url,
.url {
    word-break: break-all;
}

@media screen and (max-width: 799px) {
    h2.works_2::before {
        bottom: -45px;
        left: calc(50% - 58px);
        font-size: 0.8rem;
    }

    .web_title {
        max-width: 1000px;
        margin: 80px auto 20px auto;
    }

    .works-box {
        width: 320px;
        height: 200px;
        margin: 30px auto;
    }

    .works-box:last-child {
        margin: 30px auto;
    }

    .works_img {
        text-align: center;
        width: 100%;
        height: 200px;
        margin-top: 80px;
    }

    .works_img img {
        width: 100%;
        height: 250px;
    }

    #works_3 table {
        width: auto;
        margin: 100px 20px;
    }

    #works_3 th,
    #works_3 td {
        width: auto;
        display: block;
        border: none;
    }

    #works_3 tr:nth-child(odd) {
        background-color: transparent;
    }

    #works_3 th {
        background-color: rgba(197, 197, 197, 0.5);
    }

}

/*OTHERS start----------------------------------------------------------------------------------------------*/
h2.others::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 5px;
    background-color: #c37790;
    position: absolute;
    bottom: 0;
    left: calc(50% - 33px)
}

h2.others::before {
    content: "そのた";
    display: inline-block;
    position: absolute;
    bottom: -60px;
    left: calc(50% - 28px);
    font-size: 1rem;
    font-weight: normal;
}

.other_title_wrap {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
}

.Illustration_title,
.linestamp_title,
.business-card_title {
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: solid 2px #000;
    margin-bottom: 60px;
    width: 190px;
}

.caption {
    max-width: 600px;
    margin: 40px auto 0 auto;
}

.linestamp img,
.business-card img {
    width: 600px;
    height: 350px;
    object-fit: cover;
}

.other_img {
    max-width: 600px;
    margin: 0 auto;
}

@media screen and (max-width: 799px) {
    h2.others::before {
        bottom: -45px;
        left: calc(50% - 22px);
        font-size: 0.8rem;
    }

    .other_title_wrap {
        padding: 0 20px;
    }

    .other_img img {
        width: 100%;
    }
}


/*カルーセル slick（共通）----------------------------------------------------------------------------------------------*/
.fade {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 0;
    height: auto;
}

.fade img {
    width: 100%;
}


/*スライダ―（横）----------------------------------------------------------------------------------------------*/

.slide-container {
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
    display: flex;
    animation: slide-flow 80s infinite linear 1s both;
}

.slide {
    width: 450px;
    height: 350px;
    margin: 0 5px;
    object-fit: cover;
    border: 1px solid #ddd;
}

@keyframes slide-flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@media screen and (max-width: 799px) {
    .slide {
        margin: 0 5px;
        width: 300px;
        height: 250px;
    }

    .caption {
        padding: 0 20px;
    }

    .linestamp img,
    .business-card img {
        height: 250px;
    }

    .slide-wrapper {
        display: flex;
        animation: slide-flow 60s infinite linear 1s both;
    }
}


/*ページトップ start----------------------------------------------------------------------------------------------*/
#page-top {
    color: #000;
    position: fixed;
    bottom: 10px;
    right: 60px;
    text-decoration: none;
    display: block;
    width: 100px;
    padding: 16px 20px;
    text-align: right;
    transform: rotate(90deg);
    transform-origin: bottom right;
}

.arrow1 {
    width: 48px;
    height: 1px;
    background: #333;
    position: absolute;
    top: 50%;
    right: 62px;
}

.arrow2 {
    width: 1px;
    height: 12px;
    background: #333;
    position: absolute;
    top: calc(50% + 1px);
    right: 109px;
    transform: rotate(-130deg);
    transform-origin: top left;
}