@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1181px) {

    .container1 {
        /* background-color: paleturquoise; */
        width: 100%;
        background-image: url(../img/about-background1.webp);
        background-repeat: repeat;
        padding-top: 3%;
        padding-bottom: 3%;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 19px;
    }

    .openbtn span:nth-of-type(3) {
        top: 25px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

    /*========= ↓ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 30px;
        font-family: "Tilt Warp", serif;
        ;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 20px;
    }

    .openbtn span:nth-of-type(3) {
        top: 28px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .profile {
        background-color: white;
        width: 50%;
        margin: 2% auto 3% auto;
        border: double 3px #FF789F;
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .profile1 {
        /* background-color: forestgreen; */
        width: 85%;
        margin: 0 auto;
        text-align: center;
        font-family: "Montserrat", serif;
        font-size: 55px;
        color: #D23918;
        letter-spacing: 3px;
    }

    .profile2 {
        /* background-color: darkgrey; */
        width: 85%;
        margin: 5% auto;
    }

    .profile2 p {
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 20px;
    }

    .highlight {
        text-decoration: underline;
        text-underline-offset: -0.2em;
        text-decoration-thickness: 0.5em;
        text-decoration-color: rgba(255, 228, 0, 0.4);
        text-decoration-skip-ink: none;
    }

    .profile img {
        width: 40%;
    }

    .container2 {
        background-image: url(../img/about-background2.webp);
        width: 100%;
        background-repeat: no-repeat;
        padding-top: 80px;
        padding-bottom: 100px;
    }

    /* ------------↓ページトップコピペ---------------------- */

    /*========= ページトップのためのCSS ===============*/

    /*リンクの形状*/
    #page-top a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d23918;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    /*　上に上がる動き　*/

    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/

    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }

    /* -------------↑ぺージトップのボタンコピペ8-1-2------------ */

    .services {
        /* background-color: dimgrey; */
        width: 80%;
        /* height: 450px; */
        margin: 0 auto;
        display: flex;
        justify-content: space-around;
    }

    .services h3 {
        color: black;
        font-size: 40px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        letter-spacing: 1.5px;
        text-align: center;
        padding-top: 10%;
    }

    .services ul {
        list-style: none;
        list-style-position: inside;
        padding-top: 10%;
        color: black;
        font-size: 20px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    .services li {
        position: relative;
        padding: 0em 0.3em 0.3em 1.3em;
    }

    .services li::after,
    .services li::before {
        position: absolute;
        top: 0.43em;
        left: 0.5em;
        content: '';
        display: block;
        background: #D23918;
        height: 11px;
        width: 4px;
        border-radius: 10px;
        transform: rotate(45deg);
    }

    .services li::before {
        top: 0.6em;
        left: 0.2em;
        height: 8px;
        transform: rotate(-45deg);
    }

    .services p {
        color: black;
        font-size: 23px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    .services1 {
        background-color: white;
        border:double #FFEE00;
        width: 400px;
        /* height: 450px; */
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 0 2%;
    }

    .services1 ul {
        padding-left: 20%;
    }

    .services1 p {
        padding-left: 65%;
    }

    .services2 {
        background-color: white;
        border:double #FFEE00;
        width: 400px;
        /* height: 450px; */
        border-radius: 50% 50% 0 0;
        margin: 0 2%;
    }

    .services2 ul {
        padding-left: 20%;
    }

    .services2 p {
        padding-left: 65%;
        padding-top: 10%;
    }

    .services3 {
        background-color: white;
        border:double #FFEE00;
        width: 400px;
        /* height: auto; */
        border-radius: 50% 50% 0 0;
        margin: 0 2%;
    }

    .services3 ul {
        padding-left: 13%;
    }

    .services3 p {
        padding-left: 65%;
        padding-top: 5%;
    }

    .works {
        width: 30%;
        text-align: center;
        margin: 4% auto 0 auto;
    }

    .btn,
    a.btn,
    button.btn {
        line-height: 2;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
    }

    .btn-works {
        width: 100%;
        font-size: 40px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        display: inline-block;
        color: #013392;
        background-color: white;
        text-decoration: none;
        user-select: none;
        border: 5px #013392 solid;
        border-radius: 50px;
        transition: 0.4s ease;
    }

    .btn-works:hover {
        color: #fff;
        background: #013392;
    }

    .container3 {
        background-color: cornflowerblue;
        width: 100%;
        background-image: url(../img/about-background3.webp);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .title {
        width: 40%;
        background-color: #D23918;
        border-radius: 60px;
        text-align: center;
        margin: 50px auto 100px auto;
        border: 1px solid #EEE9E4;
    }

    .title h2 {
        color: white;
        font-size: 90px;
        font-family: "Tilt Warp", serif;
        ;
        letter-spacing: 8px;
    }

    .skills {
        background-color: white;
        border: 1px solid #EEE9E4;
        width: 80%;
        height: auto;
        margin: 0 auto;
        padding-top: 7%;
        padding-bottom: 7%;
    }

    .skills1 {
        /* background-color: darkseagreen; */
        width: 90%;
        margin: 0 auto;
    }

    .skills1 ul {
        /* background-color: blueviolet; */
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 3%; /* これで左右に均等な余白を追加 */
        justify-content: flex-start; /* これでアイテムを左揃えに */
    }

    .skills1 li {
        /* background-color: #013392; */
        width: 25%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* これで画像とテキストを縦方向に中央揃え */
        margin-bottom: 20px;
        padding: 10px;
    }

    .skills1 img {
        width: 70%;
        height: auto; 
    }

    .skills1 p {
        /* background-color: #5fb9ff; */
        color: black;
        font-size: 15px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .contact {
        background-color: #fff;
        /* background-color: cadetblue; */
        width: 100%;
    }

    .contact1 {
        /* background-color: bisque; */
        width: 80%;
        text-align: center;
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact1 h3 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 40px;
    }

    .contact1 p {
        color: #d23918;
        font-size: 150px;
        font-family: "Tilt Warp", serif;
        ;
    }

    .contact2 {
        /* background-color: darkgoldenrod; */
        width: 40%;
        text-align: center;
        margin: 0 auto;
        padding-top: 2%;
        font-family: "Tilt Warp", serif;
        ;
    }

    a.btn-contact {
        color: #fff;
        background-color: #013392;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50%;
        line-height: 300px;
        width: 300px;
        height: 300px;
        padding: 0;
        -webkit-box-shadow: 0 10px 0 #5fb9ff;
        box-shadow: 0 10px 0 #5fb9ff;
        font-size: 35px;
    }

    a.btn-contact:hover {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
        -webkit-box-shadow: 0 5px 0 #5fb9ff;
        box-shadow: 0 5px 0 #5fb9ff;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 10%;
        text-align: center;
        margin: 0 auto;
        padding: 5% 0%;
    }

    .footer1 img {
        width: 30%;
    }

    .footer1 p {
        font-family: "Tilt Warp", serif;
        ;
        color: white;
        font-size: 20px;
    }

}






















/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1180px) {

    .container1 {
        /* background-color: paleturquoise; */
        width: 100%;
        background-image: url(../img/about-background1.webp);
        background-repeat: repeat;
        padding-top: 7%;
        padding-bottom: 7%;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
    　5-2-4 MENUがCLOSEに
    ===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 19px;
    }

    .openbtn span:nth-of-type(3) {
        top: 25px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

    /*========= ↓ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 30px;
        font-family: "Tilt Warp", serif;
        ;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 20px;
    }

    .openbtn span:nth-of-type(3) {
        top: 28px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .profile {
        background-color: white;
        width: 75%;
        margin: 2% auto 3% auto;
        border: double 3px #FF789F;
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .profile1 {
        /* background-color: forestgreen; */
        width: 85%;
        margin: 0 auto;
        text-align: center;
        font-family: "Montserrat", serif;
        font-size: 50px;
        color: #D23918;
        letter-spacing: 3px;
    }

    .profile2 {
        /* background-color: darkgrey; */
        width: 85%;
        margin: 5% auto;
        padding-bottom: 3%;
    }

    .profile2 p {
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 20px;
    }

    .highlight {
        text-decoration: underline;
        text-underline-offset: -0.2em;
        text-decoration-thickness: 0.5em;
        text-decoration-color: rgba(255, 228, 0, 0.4);
        text-decoration-skip-ink: none;
    }

    .profile img {
        width: 40%;
        margin-bottom: 3%;
    }

    .container2 {
        background-image: url(../img/about-background2.webp);
        width: 100%;
        background-repeat: repeat;
        padding-top: 80px;
        padding-bottom: 100px;
    }

    /* ------------↓ページトップコピペ---------------------- */

    /*========= ページトップのためのCSS ===============*/

    /*リンクの形状*/
    #page-top a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d23918;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    /*　上に上がる動き　*/

    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/

    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }

    /* -------------↑ぺージトップのボタンコピペ8-1-2------------ */

    .title {
        width: 80%;
        background-color: #D23918;
        border-radius: 60px;
        text-align: center;
        margin: 40px auto 50px auto;
        border: 1px solid #EEE9E4;
    }

    .title h2 {
        color: white;
        font-size: 90px;
        font-family: "Tilt Warp", serif;
        ;
        letter-spacing: 8px;
    }

    .services {
        /* background-color: dimgrey; */
        width: 90%;
        margin: 0 auto;
        justify-content: space-around;
        padding-bottom: 5%;
    }

    .services h3 {
        color: black;
        font-size: 45px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        letter-spacing: 1.5px;
        text-align: center;
        padding-top: 10%;
    }

    .services ul {
        list-style: none;
        list-style-position: inside;
        padding-top: 10%;
        color: black;
        font-size: 30px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    .services li {
        position: relative;
        padding: 0em 0.3em 0.3em 1.3em;
    }

    .services li::after,
    .services li::before {
        position: absolute;
        top: 0.43em;
        left: 0.5em;
        content: '';
        display: block;
        background: #D23918;
        height: 11px;
        width: 4px;
        border-radius: 10px;
        transform: rotate(45deg);
    }

    .services li::before {
        top: 0.6em;
        left: 0.2em;
        height: 8px;
        transform: rotate(-45deg);
    }

    .services p {
        color: black;
        font-size: 30px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        padding-bottom: 30px;
    }

    .services1 {
        background-color: white;
        border:double #FFEE00;
        width: 520px;
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 5% auto;
    }

    .services1 ul {
        padding-left: 20%;
    }

    .services1 p {
        padding-left: 65%;
    }

    .services2 {
        background-color: white;
        border:double #FFEE00;
        width: 520px;
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 5% auto;
    }

    .services2 ul {
        padding-left: 20%;
    }

    .services2 p {
        padding-left: 65%;
        padding-top: 10%;
    }

    .services3 {
        background-color: white;
        border:double #FFEE00;
        width: 520px;
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 5% auto;
    }

    .services3 ul {
        padding-left: 13%;
    }

    .services3 p {
        padding-left: 65%;
        padding-top: 5%;
    }

    .works {
        width: 60%;
        text-align: center;
        margin: 4% auto 0 auto;
    }

    .btn,
    a.btn,
    button.btn {
        line-height: 2;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
    }

    .btn-works {
        width: 100%;
        font-size: 40px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        display: inline-block;
        color: #013392;
        background-color: white;
        text-decoration: none;
        user-select: none;
        border: 5px #013392 solid;
        border-radius: 50px;
        transition: 0.4s ease;
    }

    .btn-works:hover {
        color: #fff;
        background: #013392;
    }

    .container3 {
        background-color: cornflowerblue;
        width: 100%;
        height: auto;
        background-image: url(../img/about-background3.webp);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 50px;
        padding-bottom: 100px;
    }

    .skills {
        background-color: white;
        border: 1px solid #EEE9E4;
        width: 80%;
        height: auto;
        margin: 0 auto;
        padding-top: 7%;
        padding-bottom: 7%;
    }

    .skills1 {
        /* background-color: darkseagreen; */
        width: 90%;
        margin: 0 auto;
    }

    .skills1 ul {
        /* background-color: blueviolet; */
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 3%; /* これで左右に均等な余白を追加 */
        justify-content: flex-start; /* これでアイテムを左揃えに */
    }

    .skills1 li {
        /* background-color: #013392; */
        width: 25%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* これで画像とテキストを縦方向に中央揃え */
        margin-bottom: 20px;
        padding: 10px;
    }

    .skills1 img {
        width: 70%;
        height: auto; 
    }

    .skills1 p {
        /* background-color: #5fb9ff; */
        color: black;
        font-size: 15px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .contact {
        background-color: #fff;
        width: 100%;
    }

    .contact1 {
        /* background-color: bisque; */
        width: 80%;
        text-align: center;
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .contact1 h3 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 40px;
    }

    .contact1 p {
        color: #d23918;
        font-size: 90px;
        font-family: "Tilt Warp", serif;
        ;
    }

    .contact2 {
        /* background-color: darkgoldenrod; */
        width: 60%;
        text-align: center;
        margin: 0 auto;
        padding-top: 2%;
    }

    a.btn-contact {
        color: #fff;
        background-color: #013392;
        text-decoration: none;
        border-radius: 50%;
        line-height: 300px;
        width: 300px;
        height: 300px;
        padding: 0;
        -webkit-box-shadow: 0 10px 0 #5fb9ff;
        box-shadow: 0 10px 0 #5fb9ff;
        font-size: 35px;
        font-family: "Tilt Warp", serif;
        ;
    }

    a.btn-contact:hover {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
        -webkit-box-shadow: 0 5px 0 #5fb9ff;
        box-shadow: 0 5px 0 #5fb9ff;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 20%;
        text-align: center;
        margin: 0 auto;
        padding: 5% 0%;
    }

    .footer1 img {
        width: 20%;
    }

    .footer1 p {
        color: white;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }

}


































/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

    .container1 {
        /* background-color: paleturquoise; */
        width: 100%;
        background-image: url(../img/about-background1-smp.webp);
        background-repeat: repeat;
        padding-top: 7%;
        padding-bottom: 7%;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* -----------------↓ハンバーガーメニューコピペ------------ */

    /*==================================================
    　5-2-4 MENUがCLOSEに
    ===================================*/

    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        background: #d23918;
        cursor: pointer;
        width: 50px;
        height: 50px;
        border-radius: 5px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 19px;
    }

    .openbtn span:nth-of-type(3) {
        top: 25px;
    }

    .openbtn span:nth-of-type(3)::after {
        content: "Menu";
        /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -2px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .openbtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(3)::after {
        content: "Close";
        /*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top: 5px;
        left: 4px;
    }

    /* ----------------↑ハンバーガーメニューコピペ--------------- */

    /*========= ↓ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #d23918;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        right: -50px;
        top: -50px;
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #fff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        top: 10px;
        right: 10px;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #fff;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 13px;
    }

    .openbtn span:nth-of-type(2) {
        top: 20px;
    }

    .openbtn span:nth-of-type(3) {
        top: 28px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ------------------↑ナビコピペ5-1-20--------------- */

    .profile {
        background-color: white;
        width: 75%;
        margin: 10% auto 10% auto;
        border: double 3px #FF789F;
        text-align: center;
        padding-top: 5%;
        padding-bottom: 5%;
    }

    .profile1 {
        /* background-color: forestgreen; */
        width: 85%;
        margin: 0 auto;
        text-align: center;
        font-family: "Montserrat", serif;
        font-size: 30px;
        color: #D23918;
        letter-spacing: 3px;
    }

    .profile2 {
        /* background-color: darkgrey; */
        width: 85%;
        margin: 5% auto;
        padding-bottom: 3%;
    }

    .profile2 p {
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 10px;
    }

    .highlight {
        text-decoration: underline;
        text-underline-offset: -0.2em;
        text-decoration-thickness: 0.5em;
        text-decoration-color: rgba(255, 228, 0, 0.4);
        text-decoration-skip-ink: none;
    }

    .profile img {
        width: 40%;
        margin-bottom: 3%;
    }

    .container2 {
        background-image: url(../img/about-background2-smp.webp);
        width: 100%;
        background-repeat: repeat;
        padding-top: 15%;
        padding-bottom: 10%;
    }

    /* ------------↓ページトップコピペ---------------------- */

    /*========= ページトップのためのCSS ===============*/

    /*リンクの形状*/
    #page-top a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #d23918;
        opacity: 0.8;
        border: 2px solid #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        color: #fff;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s;
    }

    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(100px);
    }

    /*　上に上がる動き　*/

    #page-top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        from {
            opacity: 0;
            transform: translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /*　下に下がる動き　*/

    #page-top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 1;
            transform: translateY(100px);
        }
    }

    /* -------------↑ぺージトップのボタンコピペ8-1-2------------ */

    .title {
        width: 85%;
        background-color: #D23918;
        border-radius: 60px;
        text-align: center;
        margin: 0 auto 10% auto;
        border: 1px solid #EEE9E4;
    }

    .title h2 {
        color: white;
        font-size: 50px;
        font-family: "Tilt Warp", serif;
        ;
        letter-spacing: 6px;
    }

    .services {
        /* background-color: dimgrey; */
        width: 90%;
        margin: 0 auto;
        justify-content: space-around;
        padding-bottom: 5%;
    }

    .services h3 {
        color: black;
        font-size: 25px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        letter-spacing: 1.5px;
        text-align: center;
        padding-top: 10%;
    }

    .services ul {
        list-style: none;
        list-style-position: inside;
        padding-top: 10%;
        color: black;
        font-size: 16px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
    }

    .services li {
        position: relative;
        padding: 0em 0.3em 0.3em 1.3em;
    }

    .services li::after,
    .services li::before {
        position: absolute;
        top: 0.43em;
        left: 0.5em;
        content: '';
        display: block;
        background: #D23918;
        height: 11px;
        width: 4px;
        border-radius: 10px;
        transform: rotate(45deg);
    }

    .services li::before {
        top: 0.6em;
        left: 0.2em;
        height: 8px;
        transform: rotate(-45deg);
    }

    .services p {
        color: black;
        font-size: 16px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        padding-bottom: 20px;
    }

    .services1 {
        background-color: white;
        border:double #FFEE00;
        width: 270px;
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 5% auto;
    }

    .services1 ul {
        padding-left: 20%;
    }

    .services1 p {
        padding-left: 65%;
    }

    .services2 {
        background-color: white;
        border:double #FFEE00;
        width: 270px;
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 5% auto;
    }

    .services2 ul {
        padding-left: 20%;
    }

    .services2 p {
        padding-left: 65%;
        padding-top: 10%;
    }

    .services3 {
        background-color: white;
        border:double #FFEE00;
        width: 270px;
        border-radius: 50% 50% 0 0;
        padding-bottom: 3%;
        margin: 5% auto 7% auto;
    }

    .services3 ul {
        padding-left: 15%;
    }

    .services3 p {
        padding-left: 70%;
        padding-top: 5%;
    }

    .works {
        width: 70%;
        text-align: center;
        margin: 0 auto 5% auto;
    }

    .btn,
    a.btn,
    button.btn {
        line-height: 2;
        position: relative;
        display: inline-block;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0s;
        transition: all 0s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
    }

    .btn-works {
        width: 100%;
        font-size: 20px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        display: inline-block;
        color: #013392;
        background-color: white;
        text-decoration: none;
        user-select: none;
        border: 3px #013392 solid;
        border-radius: 50px;
        transition: 0s ease;
        padding: 5px 18px;
    }

    .btn-works:hover {
        color: #fff;
        background: #013392;
    }

    .container3 {
        /* background-color: #ff66c4; */
        width: 100%;
        background-image: url(../img/about-background3-smp.webp);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 10%;
        padding-bottom: 10%;
    }

    .skills {
        background-color: white;
        border: 1px solid #EEE9E4;
        width: 80%;
        height: auto;
        margin: 0 auto;
        padding-top: 7%;
        padding-bottom: 7%;
    }

    .skills1 {
        /* background-color: darkseagreen; */
        width: 90%;
        margin: 0 auto;
    }

    .skills1 ul {
        /* background-color: blueviolet; */
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 3%; /* これで左右に均等な余白を追加 */
        justify-content: flex-start; /* これでアイテムを左揃えに */
    }

    .skills1 li {
        /* background-color: #013392; */
        width: 33%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* これで画像とテキストを縦方向に中央揃え */
        margin-bottom: 10px;
        padding: 5px;
    }

    .skills1 img {
        width: 70%;
        height: auto; 
    }

    .skills1 p {
        /* background-color: #5fb9ff; */
        color: black;
        font-size: 10px;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-weight: bold;
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .contact {
        background-color: #fff;
        /* background-color: cadetblue; */
        width: 100%;
        margin-bottom: 6%;
        margin-top: 5%;
    }

    .contact1 {
        /* background-color: bisque; */
        width: 80%;
        text-align: center;
        margin: 0 auto;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contact1 h3 {
        color: black;
        font-family: "Zen Kaku Gothic New", serif;
        ;
        font-size: 20px;
    }

    .contact1 p {
        color: #d23918;
        font-size: 50px;
        font-family: "Tilt Warp", serif;
        ;
    }

    .contact2 {
        /* background-color: darkgoldenrod; */
        width: 70%;
        text-align: center;
        margin: 0 auto;
        padding-top: 2%;
    }

    a.btn-contact {
        color: #fff;
        background-color: #013392;
        text-decoration: none;
        border-radius: 50%;
        line-height: 150px;
        width: 150px;
        height: 150px;
        padding: 0;
        -webkit-box-shadow: 0 10px 0 #5fb9ff;
        box-shadow: 0 10px 0 #5fb9ff;
        font-size: 20px;
        font-family: "Tilt Warp", serif;
        ;
    }

    a.btn-contact:hover {
        -webkit-transform: translate(0, 3px);
        transform: translate(0, 3px);
        -webkit-box-shadow: 0 5px 0 #5fb9ff;
        box-shadow: 0 5px 0 #5fb9ff;
    }

    .footer {
        background-color: #FFCE4E;
        width: 100%;
    }

    .footer1 {
        /* background-color: #FFCE4E; */
        width: 20%;
        text-align: center;
        margin: 0 auto;
        padding: 40px 0;
    }

    .footer1 img {
        width: 45%;
    }

    .footer1 p {
        color: white;
        font-size: 12px;
        font-family: "Tilt Warp", serif;
        ;
        font-weight: normal;
    }

}