*{
    padding: 0px;
    margin: 0px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-style: normal;
}
body {
    color: #333333;
    letter-spacing: 0.08em;
    background-image: url(imgs/background.png);
    background-repeat: no-repeat;
    background-size: cover;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #333333;
}
section {
    margin-bottom: 150px;
}
section.anchor {
    padding-top: 120px;
    margin-top: -120px;
}

/* トップページ */
/* ヘッダー */
header {
    width: 100%;
    z-index: 20;
}
.sometimes_header {
    display: none;
    position: fixed;
}
.global_nav {
    background-image: url(imgs/background.png);   
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); /*これを付け足し*/
}
.global_nav nav {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #E77373;
}
.global_nav h2 {
    margin-left: 70px;
    font-weight: bold;
    font-size: 25px;
    letter-spacing: 0.2rem;
}
.global_nav ul {
    display: flex;
    gap: 40px;
    margin-right: 70px;
}
.global_nav a {
    color: #E77373;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2rem;
}
.global_nav a:hover {
    color: #FDC7CD;
}
.global_nav h2 a {
    font-size: 25px;
}

/* バーガー */
.burger {
    width: 40px;
    height: 40px;
    background-image: url(imgs/burger2.png);
    background-color: #FDC7CD;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    position: relative;
    z-index: 50;
    display: none;
}
.burger.is-actived {
    background-image: url(imgs/close.png);
}
/* バーガーメニュー */
.burger_menu {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100vw;
    height: 250px;
    background-color: #F18795;
    color: #fff;
    display: none;
}
.burger_menu.is-actived {
    display: flex;
}

/* バーガーの中身 */
.burger_nav_header {
    display: initial;
}
.burger_nav_header li {
    line-height: 3;
}
.burger_nav_header a {
    color: #fff;
    font-size: 17px;
}


/* ファーストビュー */
.firstview {
    height: calc(100vh - 70px);
}
.flower_img {
    height: 600px;
    background-image: url(imgs/flower.png);
    background-repeat: no-repeat;
    background-size: 900px;
    position: relative;
    z-index: 1;
}
.first_cont {
    position: absolute;
    width: 90%;
    height: 85%;
    border: solid 2px #ffffff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.first_cont img {
    width: auto;
    height: 80%;
}

/* 作品集 */
.works_cont {
    width: 90%;
    margin: auto;
}
.works_cont h2 {
    text-align: center;
    margin-bottom: 50px;
}
.works_cont img{
    height: 60px;
}

/* スライダー */
.slider {
    width: 80%;
    margin: auto;
}
.slide_items {
    display: flex;
    position: relative;
}
.slide_items li {
    transition: all 0.6s ease 0.4s;
    opacity: 0.8;
    overflow: hidden;
    object-fit: cover;
    margin: 0px 20px;
}
.slide_items li img {
    display: block;
    width: 100%;
    object-fit: cover;
}
.slide_items .slick-prev {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 45%;
    left: -50px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    background: url(imgs/arrow_prev.png) center/cover;
    font-size: 0;
}
.slide_items .slick-next {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 45%;
    right: -50px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 5;
    background: url(imgs/arrow_next.png) center/cover;
    font-size: 0;
}
.slide_items button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.slide_items button:focus {
    outline: none;
}
/* ドッツ */
.slide-dots button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.slide-dots {
    display: flex;
    justify-content: center;
    margin: 40px 0px;
}
.slide-dots li {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid #F18795;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
    transition: background-color .5s ease;
}
.slide-dots li.slick-active {
    background-color: #F18795;
}
.slide-dots li:hover {
    background-color: #F18795;
}
.slide-dots li:last-child {
    margin-right: 0;
}

/* ボタン */
.button {
    height: 50px;
    width: 250px;
    margin: auto;
    background-color: #FDC7CD;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button a {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

/* スキル */
.skill_tittle {
    width: 90%;
    margin: auto;
}
.skill_tittle h2 {
    text-align: center;
    margin-bottom: 50px;
}
.skill_tittle img{
    height: 60px;
}
.skill_cont {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.skill_cont .first_raw {
    margin-bottom: 100px;
}
.skill_list {
    width:calc(100%/3);/* 横幅を3等分 */
    text-align: center;
}
.skill_list img{
    height: 300px;
    width: auto;
    margin: auto;
}
.skill_list dl img {
    height: 50px;
}
.skill_list dl dt {
    margin: 20px 0px 10px 0px;
}
.skill_list dl dd {
    width: 270px;
    margin: auto;
    text-align: left;
    font-size: 20px;
    letter-spacing: 0.3rem;
    color: #F18795;
}

/* アバウト */
.about_tittle h2 {
    text-align: center;
    margin-bottom: 30px;
}
.about_tittle img{
    height: 60px;
}
.about_cont {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}
.about_cont img {
    height: 400px;
}
.about_cont .profile {
    width: 55%;
    color: #F18795;
    letter-spacing: 0.3rem;
}
.about_cont .profile h2 {
    font-size: 25px;
    margin-top: 70px;
}
.about_cont .profile dl {
    display: flex;
    font-weight: bold;
    color: #F18795;
    background-color: #ffffff;
    border: 2px solid #FDC7CD;
    border-radius: 10px;
    margin: 30px 0px;
    padding: 10px 0px;
}
.about_cont .profile dt {
    padding: 0px 20px;
    font-size: 20px;
    border-right: 1px solid #FDC7CD;
}
.about_cont .profile dd {
    padding: 0px 20px;
    font-size: 20px;
}

/* コンタクト */
.contact_tittle h2 {
    text-align: center;
    margin-bottom: 30px;
}
.contact_tittle img{
    height: 60px;
}
.contact_cont {
    text-align: center;
    margin-bottom: 60px;
}
.contact_cont p {
    color: #F18795;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 0.3rem;
}
.contact_cont .phone_number {
    padding: 20px;
    background-color: #fff;
    width: 300px;
    margin: auto;
    font-size: 20px;
    border: 2px solid #FDC7CD;
    border-radius: 10px;
    letter-spacing: 0.1rem;
}
.contact_adress {
    text-align: center;
}
.contact_adress p {
    text-align: center;
    color: #F18795;
    font-size: 20px;
    margin-bottom: 20px;
}
.contact_adress img {
    height: 70px;
}

/* フッター */
footer {
    height: 60px;
    background-color: #F18795;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copyright {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.3rem;
}

/* 他ページ */
/* 常に表示するヘッダー */
.always_header {
    display: block;
    position: fixed;
}

/* 作品集一覧ページ */
.works_list_page.works_cont {
    margin-bottom: 50px;
}
.works_list_page.works_cont h2 {
    padding-top: 120px;
    margin-bottom: 25px;
}
.works_list_page.works_cont p{ 
    text-align: center;
    font-size: 18px;
}
.works_list {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 120px;
}
.works_parts {
    width: calc(100%/3);
    text-align: center;
    margin-bottom: 50px;
}
.works_parts a :hover{
    opacity: 0.5;
}
.works_parts img {
    height: 230px;
}
.works_parts h3 {
    font-size: 22px;
    font-weight: 900;
    color: #F18795;
    margin-top: 7px;
}
.works_parts p {
    font-size: 12px;
    margin-top: 5px;
}

/* 各作品ページ */
article {
    width: 50%;
    margin: auto;
    padding-top: 120px;
    margin-bottom: 120px;
}
.article_tittle h2 {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 25px;
}
.article_img {
    text-align: center;
    margin-bottom: 25px;
}
.article_img img {
    width: 100%;
}
.article_body h3{
    color: #E77373;
    font-size: 22px;
    border-left: 3px solid #F18795;
    padding-left: 10px;
    margin-bottom: 10px;
}
.article_body p {
    font-size: 15px;
    padding-left: 10px;
    margin-bottom: 35px;
}
.works_list_link {
    text-align: center;
}
.works_list_link :hover {
    color: #E77373;
}

/* レスポンシブ タブレット版　*/
@media screen and (max-width:1000px) {
    /* セクション */
    section {
        margin-bottom: 100px;
    }
    section.anchor {
        padding-top: 70px;
        margin-top: -70px;
    }

    /* ヘッダー */
    .global_nav {
        display: none;
    }

    /* ファーストビュー */
    .firstview {
        height: 600px;
    }
    .flower_img {
        height: 300px;
        background-size: 500px;
    }
    .first_cont { 
        margin: 0 auto;
        margin-top: 50px;
        height: 500px;
    }
    .first_cont img {
        height: 70%;
    }

    /* バーガーメニュー */
    .list_header {
        display: none;
    }
    .burger {
        display: flex;
    }

    /* 作品集 */
    .works_cont h2 {
        margin-bottom: 30px;
    }
    .works_cont img{
        height: 45px;
    }

    /* ドッツ */
    .slide-dots {
        margin: 35px 0px;
    }
    .slide-dots li {
        width: 10px;
        height: 10px;
    }

    /* ボタン */
    .button {
        height: 50px;
        width: 200px;
    }
    .button a {
        font-size: 17px;
    }

    /* スキル */
    #skill {
        margin-top: 30px;
    }
    .skill_tittle h2 {
        margin-bottom: 30px;
    }
    .skill_tittle img{
        height: 45px;
    }
    .skill_cont .first_raw {
        margin-bottom: 70px;
    }
    .skill_list img{
        height: 200px;
    }
    .skill_list dl img {
        height: 35px;
    }
    .skill_list dl dd {
        width: 200px;
        font-size: 17px;
    }

    /* アバウト */
    #about {
        margin-top: 30px;
    }
    .about_tittle h2 {
        margin-bottom: 20px;
    }
    .about_tittle img{
        height: 45px;
    }
    .about_cont .profile {
        width: 60%;
    }
    .about_cont img {
        height: 300px;
    }
    .about_cont .profile h2 {
        font-size: 23px;
        margin-top: 45px;
    }
    .about_cont .profile dl {
        margin: 20px 0px;
        padding: 10px 0px;
    }
    .about_cont .profile dt {
        font-size: 17px;
    }
    .about_cont .profile dd {
        font-size: 17px;
    }

    /* コンタクト */
    #contact {
        margin-top: 30px;
    }
    .contact_tittle img{
        height: 45px;
    }
    .contact_cont {
        margin-bottom: 40px;
    }

    /* 作品集一覧ページ */
    .works_list_page.works_cont h2 {
        padding-top: 80px;
        margin-bottom: 25px;
    }
    .works_parts img {
        height: 150px;
    }
    .works_parts h3 {
        font-size: 18px;
    }
    .works_parts p {
        font-size: 9px;
    }

    /* 各作品ページ */
    article {
        width: 70%;
        padding-top: 80px;
    }
    .article_tittle h2 {
        font-size: 22px;
    }
    .article_img img {
       width: 100%;
    }
    .article_body h3{
        font-size: 20px;
    }
}
@media screen and (max-width:650px) {
    /* ファーストビュー */
    .firstview {
        height: 50vh;
    }
    .flower_img {
        height: 300px;
        background-size: 400px;
    }
    .first_cont { 
        height: 30vh;
    }
    .first_cont img {
        width: 100%;
        height: auto;
    }
}
/* レスポンシブ　スマホ版 */
@media screen and (max-width:460px) {
    /* セクション */
    section {
        margin-bottom: 30px;
    }
    section.anchor {
        padding-top: 40px;
        margin-top: -40px;
    }

    /* ファーストビュー */
    .firstview {
        height: 350px;
    }
    .flower_img {
        height: 250px;
        background-size: 300px;
    }

    /* 作品集 */
    .works_cont h2 {
        margin-bottom: 15px;
    }
    .works_cont img{
        height: 30px;
    }

    /* スライダー */
    .slider {
        width: 75%;
        margin: auto;
    }
    .slide_items li {
        margin: 0px 6px;
    }
    .slide_items .slick-prev {
        width: 15px;
        height: 15px;
        left: -25px;
        top: 35%;
    }
    .slide_items .slick-next {
        width: 15px;
        height: 15px;
        right: -25px;
        top: 35%;
    }

    /* ドッツ */
    .slide-dots {
        margin: 20px 0px;
    }
    .slide-dots li {
        width: 5px;
        height: 5px;
    }

    /* ボタン */
    .button {
        height: 30px;
        width: 120px;
    }
    .button a {
        font-size: 12px;
    }

    /* スキル */
    .skill_tittle h2 {
        margin-bottom: 15px;
    }
    .skill_tittle img{
        height: 30px;
    }
    .skill_cont .first_raw {
        margin-bottom: 10px;
    }
    .skill_list {
        display: flex;
        width: 100%;
        margin-bottom: 10px;
    }
    .skill_list img{
        height: 100px;
    }
    .skill_list dl {
        width: 60%;
    }
    .skill_list dl img {
        display: none;
    }
    .skill_list dl dt {
        margin: 0px 0px 5px 0px;
    }
    .skill_list dl dd {
        width: 100%;
        font-size: 12px;
    }

    /* アバウト */
    .about_tittle h2 {
        margin-bottom: 10px;
    }
    .about_tittle img{
        height: 30px;
    }
    .about_cont {
        display: block;
        text-align: center;
    }
    .about_cont img {
        height: 125px;
        text-align: center;
    }
    .about_cont .profile {
        width: 100%;
    }
    .about_cont .profile h2 {
        font-size: 17px;
        margin-top: 5px;
    }
    .about_cont .profile dl {
        margin: 10px 0px;
        padding: 10px 0px;
    }
    .about_cont .profile dt {
        font-size: 12px;
        padding: 0px 10px;
    }
    .about_cont .profile dd {
        font-size: 12px;
        padding: 0px 10px;
    }
    .about_cont .profile p {
        font-size: 10px;
        text-align: left;
    }

    /* コンタクト */
    .contact_tittle h2 {
        margin-bottom: 10px;
    }
    .contact_tittle img{
        height: 30px;
    }
    .contact_cont {
        margin-bottom: 20px;
    }
    .contact_cont p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .contact_cont .phone_number {
        padding: 10px;
        width: 200px;
        font-size: 15px;
        border-radius: 10px;
    }
    .contact_adress p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .contact_adress img {
        height: 50px;
    }

    /* フッター */
    footer {
        height: 40px;
    }
    .copyright {
        font-size: 7px;
    }

    /* 作品集一覧ページ */
    .works_list_page.works_cont h2 {
        padding-top: 50px;
        margin-bottom: 20px;
    }
    .works_list_page.works_cont p {
        font-size: 15px;
    }
    .works_parts {
        width: calc(100%/2);
    }
    .works_parts img {
        height: 100px;
    }
    .works_parts h3 {
        font-size: 14px;
    }
    .works_parts p {
        font-size: 7px;
    }

    /* 各作品ページ */
    article {
        width: 70%;
        padding-top: 50px;
    }
    .article_tittle h2 {
        font-size: 22px;
    }
    .article_img img {
       width: 100%;
    }
    .article_body h3{
        font-size: 17px;
    }
    .article_body p {
        font-size: 12px;
    }
    
}
