@charset "UTF-8";

/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Zen Kaku Gothic New', sans-serif; */
/* font-family: 'Shippori Mincho', serif; */

/*PCサイズレスポンシブ*/
@media(min-width:1000px) {
    body {
        min-width: 1000px;
        background-color: #f6f3ee;
    }

    .container {
        width: 100%;
    }

    .spheader {
        display: none;
    }

    .ipadspabout {
        display: none;
    }

    /* PCcss */

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    .header {
        width: 100%;
        background-image: url(../img/other_top.jpg);
        background-size: 100%;
        background-repeat: no-repeat;
        height: 650px;
        background-color: rgba(255, 255, 255, 0.2);
        background-blend-mode: lighten;
    }

    /* ページトップのボタン */
    /* https://f1403008.raindrop.jp/amaoto/post-531/ */
    .pagetop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
    }

    .pagetop img {
        width: 100%;
    }

    .pagetop a {
        display: block;
        text-decoration: none;
    }

    .pagetop:hover {
        opacity: 0.85;
    }

    /* https://blog.pippuriric.com/tech/wordpress/css/delayeddisplay/#title2 */
    .header {
        /* じわっと画像が表示される */
        animation: fadeIn 2.5s ease 0s 1 normal;
        -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
    }

    /* じわっと画像が表示される */
    @keyframes fadeIn {

        /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
        0% {
            opacity: 0
        }

        /* 始め */
        100% {
            opacity: 1
        }

        /* 終わり */
    }

    .menu {
        width: 100%;
        height: 120px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.35);
        position: fixed;
        font-size: 20px;
        transition: 1.3s;
        z-index: 1000;
    }

    .menu1 {
        width: 35%;
        margin-left: 10%;
    }

    .menu1 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    .menu2 {
        width: 10%;
    }

    .menu2 img {
        width: 100%;
    }

    .menu3 {
        width: 35%;
        margin-right: 10%;
    }

    .menu3 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    /* メニューバーが小さくなる */
    .small {
        height: 60px;
        backdrop-filter: blur(6px);
    }

    .smalllogo {
        height: 100%;
        width: 100%;
    }

    .smallmenu2 {
        height: 75px;
        width: 75px;
    }

    /* ホバーでアンダーライン */
    /* https://hakenblog.com/css-hover-underline-animation/ */
    .menu1 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu1 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu1 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu1 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .menu3 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu3 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu3 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu3 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .jumpbtn {
        position: absolute;
        top: 120px;
        margin-top: 50px;
        margin-left: 200px;
    }

    .jumpbtn ul {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
    }

    .jumpbtn ul li {
        padding-top: 20px;
    }


    .about {
        width: 80%;
        height: 600px;
        margin: 250px auto 100px auto;
    }

    /* スクロールでふわっと */
    .about {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .about a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .main {
        width: 100%;
        height: 400px;
        display: flex;
        margin: auto;
        justify-content: space-between;
    }

    .about1 {
        width: 10%;
    }

    .about1 h2 {
        writing-mode: vertical-rl;
        text-orientation: sideways;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
    }

    .eigoprofile {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .about2 img {
        height: 400px;
    }

    .about3 {
        width: 50%;
    }

    .about3 p {
        height: 400px;
        font-size: 20px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        letter-spacing: 5px;
        line-height: 40px;
    }

    .sphistory {
        display: none;
    }

    /* スクロールでふわっと */
    .history {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .history a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .history {
        width: 80%;
        height: 750px;
        margin: 100px auto;
    }

    .history2 h2 {
        writing-mode: vertical-rl;
        text-orientation: sideways;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
        padding-left: 40px;
    }

    .eigohistory {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .contents1 {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .history1 {
        width: 90%;
    }

    /* タイムライン */
    /* https://www.webcreatorbox.com/tech/css-timeline */

    .timeline {
        list-style: none;
    }

    .timeline h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    .timeline>li {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 18px;
        font-weight: 400;
    }

    .timeline>li {
        overflow: hidden;
        margin: 0;
        position: relative;
        margin-bottom: 20px;
    }

    .timeline-date {
        width: 5px;
        float: left;
        margin-top: 10px;
    }

    .timeline-content {
        width: 90%;
        float: left;
        border-left: 6px #dddd solid;
        padding-left: 30px;
    }

    .timeline-content:before {
        content: '';
        width: 5px;
        height: 28px;
        background: #b3c7d7;
        position: absolute;
        left: 5px;
        top: 0px;
        border-radius: 0%;
    }


    .history2 {
        width: 10%;
    }

    .contents2 {
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: space-between;
    }

    .contents2 {
        width: 100%;
        height: 200px;
    }

    .history3 ul {
        padding-left: 0;
        display: flex;
    }

    .history3 {
        width: 90%;
    }

    .history4 {
        width: 10%;
    }

    .history3 img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }


    /* スクロールでふわっと */
    .mindtitle {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .mindtitle a {
        display: block;
        height: 13rem;
        margin-top: -13rem;
        content: "";
    }


    .mindmain {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    .mindtitle {
        width: 100%;
        height: 300px;
        background-image: url(../img/about05.jpg);
        background-size: 100%;
        background-position: bottom;
        background-color: rgba(255, 255, 255, 0.35);
        background-blend-mode: lighten;
    }

    .mindtitle {
        display: flex;
        align-items: center;
    }

    .mindtext {
        margin-left: 10%;

    }

    .mindtext h2 {
        text-align: left;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
    }

    .eigomind {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .mindmain {
        width: 80%;
        margin: 0 auto;
        display: flex;
        padding: 50px 0;
    }

    .mind1 {
        width: 45%;
        font-family: 'Shippori Mincho', serif;
        font-size: 24px;
        letter-spacing: 10px;
        line-height: 60px;
    }

    .mind2 {
        width: 65%;
    }

    .my {
        color: red;
    }

    .dots {
        line-height: 70px;
    }



    .mind2 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        margin: 50px auto 10px auto;
        font-weight: 500;
        font-size: 30px;
    }

    .mind2 h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 24px;
        margin-bottom: 40px;
    }

    .mindmain2 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .mindmain2 p {
        font-size: 20px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        letter-spacing: 5px;
        line-height: 40px;
    }

    .skill {
        width: 100%;
        height: 400px;
        background-image: url(../img/background5.jpg);
        background-size: 100%;
        display: flex;
    }

    .skill1 {
        width: 36%;
        margin-left: 10%;
    }

    .skill1 h2 {
        margin-top: 50px;
        height: 20%;
        text-align: left;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
    }

    .eigoskill {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .skill1 h3 {
        height: 30%;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
    }

    .skill .skillbtn {
        height: 30%;
        margin: 50px auto;
        text-align: center;
    }



    /* ボタンアクション */
    .skillbtn {
        height: 50px;
        margin: 0 auto;
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
    }

    .btn--skill,
    a.btn--skill {
        color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 10px 50px;
    }

    .btn--skill:hover,
    a.btn--skill:hover {
        color: #000000;
        background: #eee8e8;
    }

    a.btn--skill {
        border-radius: 100vh;
    }

    .skill2 {
        width: 45%;
        margin: auto;
    }

    .skill2 img {
        width: 60%;
    }

    .icon1 {
        margin-bottom: 50px;
    }

    .icon1 ul {
        display: flex;
    }

    .icon2 {
        margin-top: 50px;
    }

    .icon2 ul {
        display: flex;
    }

    .contact {
        width: 75%;
        height: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact1 {
        width: 25%;
    }

    .contact1 img {
        width: 80%;
    }

    .contact2 {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .contact2 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 24px;
        font-weight: 500;
    }

    .eigocontact {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        font-weight: 400;
    }

    .contact2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        line-height: 25px;
    }

    .contacth2 p {
        height: 100px;
    }

    .contactbtn {
        margin: 0 auto;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
    }

    .btn--contact,
    a.btn--contact {
        color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 10px 50px;
    }

    .btn--contact:hover,
    a.btn--about:hover {
        color: #000000;
        background: #eee8e8;
    }

    a.btn--contact {
        border-radius: 100vh;
    }

}


/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
        background-color: #f6f3ee;
    }

    .container {
        width: 100%;
    }

    .spheader {
        display: none;
    }

    .about {
        display: none;
    }

    /* PCcss */
    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    .header {
        width: 100%;
        background-image: url(../img/other_top.jpg);
        background-size: 100%;
        background-repeat: no-repeat;
        height: 400px;
        background-color: rgba(255, 255, 255, 0.2);
        background-blend-mode: lighten;
    }

    /* ページトップのボタン */
    /* https://f1403008.raindrop.jp/amaoto/post-531/ */
    .pagetop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
    }

    .pagetop img {
        width: 100%;
    }

    .pagetop a {
        display: block;
        text-decoration: none;
    }

    .pagetop:hover {
        opacity: 0.85;
    }

    /* https://blog.pippuriric.com/tech/wordpress/css/delayeddisplay/#title2 */
    .header {
        /* じわっと画像が表示される */
        animation: fadeIn 2.5s ease 0s 1 normal;
        -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
    }

    /* じわっと画像が表示される */
    @keyframes fadeIn {

        /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
        0% {
            opacity: 0
        }

        /* 始め */
        100% {
            opacity: 1
        }

        /* 終わり */
    }

    .menu {
        width: 100%;
        height: 120px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.35);
        position: fixed;
        font-size: 20px;
        transition: 1.3s;
        z-index: 1000;
    }

    .menu1 {
        width: 35%;
        margin-left: 10%;
    }

    .menu1 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    .menu2 {
        width: 10%;
    }

    .menu2 img {
        width: 100%;
    }

    .menu3 {
        width: 35%;
        margin-right: 10%;
    }

    .menu3 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    /* メニューバーが小さくなる */
    .small {
        height: 60px;
        backdrop-filter: blur(6px);
    }

    .smalllogo {
        height: 100%;
        width: 100%;
    }

    .smallmenu2 {
        height: 75px;
        width: 75px;
    }

    /* ホバーでアンダーライン */
    /* https://hakenblog.com/css-hover-underline-animation/ */
    .menu1 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu1 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu1 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu1 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .menu3 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu3 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu3 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu3 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .jumpbtn {
        position: absolute;
        margin-top: 110px;
        margin-left: 50px;
    }

    .jumpbtn ul {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
    }

    .jumpbtn ul li {
        padding-top: 20px;
    }




    /* スクロールでふわっと */
    .ipadspabout {
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .ipadspabout a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .ipadspabout {
        width: 80%;
        margin: 100px auto 100px auto;
    }

    .main1 {
        width: 100%;
        display: flex;
        margin: auto;
        justify-content: space-around;
    }

    .about1 {
        width: 10%;
    }

    .about1 h2 {
        writing-mode: vertical-rl;
        text-orientation: sideways;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
    }

    .eigoprofile {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .about2 img {
        height: 400px;
    }

    .main2 {
        width: 100%;
        margin: 50px auto;
    }

    .about3 {
        width: 100%;
    }

    .about3 p {
        width: 100%;
        font-size: 20px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        letter-spacing: 2px;
        line-height: 35px;
    }

    .sphistory {
        display: none;
    }

    /* スクロールでふわっと */
    .history {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .history a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .history {
        width: 90%;
        margin: 100px auto;
    }

    .history2 h2 {
        writing-mode: vertical-rl;
        text-orientation: sideways;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
        padding-left: 40px;
    }

    .eigohistory {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .contents1 {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .history1 {
        width: 90%;
    }

    /* タイムライン */
    /* https://www.webcreatorbox.com/tech/css-timeline */

    .timeline {
        list-style: none;
    }

    .timeline h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    .timeline>li {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 18px;
        font-weight: 400;
    }

    .timeline>li {
        overflow: hidden;
        margin: 0;
        position: relative;
        margin-bottom: 20px;
    }

    .timeline-date {
        width: 5px;
        float: left;
        margin-top: 10px;
    }

    .timeline-content {
        width: 90%;
        float: left;
        border-left: 6px #dddd solid;
        padding-left: 30px;
    }

    .timeline-content:before {
        content: '';
        width: 5px;
        height: 28px;
        background: #b3c7d7;
        position: absolute;
        left: 5px;
        top: 0px;
        border-radius: 0%;
    }



    .history2 {
        width: 10%;
    }

    .contents2 {
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: space-between;
    }

    .contents2 {
        width: 100%;
        height: 200px;
    }

    .history3 ul {
        padding-left: 0;
        display: flex;
    }

    .history3 {
        width: 90%;
    }

    .history4 {
        width: 10%;
    }

    .history3 img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }


    /* スクロールでふわっと */
    .mindtitle {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .mindtitle a {
        display: block;
        height: 13rem;
        margin-top: -13rem;
        content: "";
    }

    .mindmain {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    .mindtitle {
        width: 100%;
        height: 300px;
        background-image: url(../img/about05.jpg);
        background-size: 100%;
        background-position: bottom;
        background-color: rgba(255, 255, 255, 0.35);
        background-blend-mode: lighten;
    }

    .mindtitle {
        display: flex;
        align-items: center;
    }

    .mindtext {
        margin-left: 10%;

    }

    .mindtext h2 {
        text-align: left;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
    }

    .eigomind {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .mindmain {
        width: 80%;
        margin: 0 auto;
        padding: 50px 0;
    }

    .mind1 {
        width: 100%;
        font-family: 'Shippori Mincho', serif;
        font-size: 24px;
        letter-spacing: 10px;
        line-height: 60px;
    }

    .my {
        color: red;
    }

    .dots {
        line-height: 70px;
    }

    .mind2 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        margin: 10px auto 10px auto;
        font-weight: 500;
        font-size: 30px;
    }

    .mind2 h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 24px;
        margin-bottom: 40px;
    }

    .mindmain2 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .mindmain2 p {
        font-size: 20px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        letter-spacing: 3px;
        line-height: 35px;
    }

    .skill {
        width: 100%;
        height: auto;
        background-image: url(../img/about_06.jpg);
        background-size: 100%;
        display: flex;
    }

    .skill1 {
        width: 45%;
        margin-left: 10%;
    }

    .skill2 {
        width: 55%;
        padding: auto;
    }

    .skill1 h2 {
        margin-top: 20px;
        height: 20%;
        text-align: left;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 30px;
        font-weight: normal;
    }

    .eigoskill {
        font-family: 'Montserrat', sans-serif;
        font-size: 50px;
    }

    .skill1 h3 {
        height: 30%;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
    }

    .skill .skillbtn {
        height: 30%;
        margin: 50px auto;
    }



    /* ボタンアクション */
    .skillbtn {
        height: 30px;
        margin: 0 auto;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        text-align: center;
    }

    .btn--skill,
    a.btn--skill {
        color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 10px 40px;
    }

    .btn--skill:hover,
    a.btn--skill:hover {
        color: #000000;
        background: #eee8e8;
    }

    a.btn--skill {
        border-radius: 100vh;
    }

    .skill2 {
        width: 45%;
        margin: auto;
    }

    .skill2 img {
        width: 60%;
    }

    .icon1 {
        margin-bottom: 50px;
    }

    .icon1 ul {
        display: flex;
    }

    .icon2 {
        margin-top: 50px;
    }

    .icon2 ul {
        display: flex;
    }

    .contact {
        width: 75%;
        height: 300px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact1 {
        width: 25%;
    }

    .contact1 img {
        width: 80%;
    }

    .contact2 {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .contact2 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 24px;
        font-weight: 500;
    }

    .eigocontact {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
        font-weight: 400;
    }

    .contact2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        line-height: 25px;
    }

    .contacth2 p {
        height: 100px;
    }

    .contactbtn {
        margin: 0 auto;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
    }

    .btn--contact,
    a.btn--contact {
        color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 10px 50px;
    }

    .btn--contact:hover,
    a.btn--about:hover {
        color: #000000;
        background: #eee8e8;
    }

    a.btn--contact {
        border-radius: 100vh;
    }
}

/*SPサイズレスポンシブ*/
@media(max-width:599px) {
    body {
        max-width: 599px;
        background-color: #f6f3ee;
    }

    .container {
        width: 100%;
    }

    /* タブレットcss */

    .header {
        display: none;
    }

    .about {
        display: none;
    }

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    .spheader {
        width: 100%;
        background-image: url(../img/other_top.jpg);
        background-size: 100%;
        background-repeat: none;
        height: 200px;
    }

    /* ページトップのボタン */
    /* https://f1403008.raindrop.jp/amaoto/post-531/ */
    .pagetop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
    }

    .pagetop img {
        width: 100%;
    }

    .pagetop a {
        display: block;
        text-decoration: none;
    }

    .pagetop:hover {
        opacity: 0.85;
    }

    /* https://blog.pippuriric.com/tech/wordpress/css/delayeddisplay/#title2 */
    .spheader {
        /* じわっと画像が表示される */
        animation: fadeIn 2.5s ease 0s 1 normal;
        -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
    }

    /* じわっと画像が表示される */
    @keyframes fadeIn {

        /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
        0% {
            opacity: 0
        }

        /* 始め */
        100% {
            opacity: 1
        }

        /* 終わり */
    }

    .spmenu {
        width: 100%;
        height: 60px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.8);
        position: fixed;
        font-size: 12px;
        transition: 1.3s;
        z-index: 1000;
    }

    .spmenu1 {
        width: 37%;
        margin-left: 2%;
    }

    .spmenu1 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-between;
    }

    .spmenu2 {
        width: 22%;
        height: 60px;
    }

    .spmenu2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .spmenu3 {
        width: 37%;
        margin-right: 2%;
    }

    .spmenu3 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-between;
    }

    /* メニューバーが小さくなる */
    .spsmall {
        background-color: rgba(255, 255, 255, 0.90);
    }

    /* ホバーでアンダーライン */
    /* https://hakenblog.com/css-hover-underline-animation/ */
    .spmenu1 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .spmenu1 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .spmenu1 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .spmenu1 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .spmenu3 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .spmenu3 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .spmenu3 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .spmenu3 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .jumpbtn {
        position: absolute;
        margin-top: 110px;
        margin-left: 50px;
    }

    .jumpbtn ul {
        font-family: 'Montserrat', sans-serif;
        font-size: 24px;
    }

    .jumpbtn ul li {
        padding-top: 20px;
    }




    /* スクロールでふわっと */
    .ipadspabout {
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .ipadspabout a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .ipadspabout {
        width: 90%;
        margin: 100px auto 100px auto;
    }

    .main1 {
        width: 100%;
        display: flex;
        margin: auto;
        justify-content: space-around;
    }

    .about1 {
        width: 10%;
    }

    .about1 h2 {
        writing-mode: vertical-rl;
        text-orientation: sideways;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        font-weight: normal;
        position: absolute
    }

    .eigoprofile {
        font-family: 'Montserrat', sans-serif;
        font-size: 40px;
    }

    .about2 {
        width: 90%;
    }

    .about2 img {
        width: 100%;
        object-fit: cover;
    }

    .main2 {
        margin: 50px auto;
    }

    .about3 {
        width: 100%;
    }

    .about3 p {
        width: 100%;
        font-size: 16px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        letter-spacing: 2px;
        line-height: 35px;
    }

    .history {
        display: none;
    }

    /* ジャンプしたときの高さ調整 */
    .sphistory a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .sphistory {
        width: 90%;
        margin: 100px auto;
        margin-bottom: 200px;
    }

    .history1 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        font-weight: normal;
    }

    .history1 {
        margin-bottom: 20px;
    }

    .eigohistory {
        font-family: 'Montserrat', sans-serif;
        font-size: 40px;
    }

    .contents1 {
        width: 100%;
    }

    .history2 {
        width: 100%;
    }

    /* タイムライン */
    /* https://www.webcreatorbox.com/tech/css-timeline */

    .timeline {
        list-style: none;
    }

    .timeline h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
        font-weight: 600;
    }

    .timeline>li {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
        font-weight: 400;
    }

    .timeline>li {
        overflow: hidden;
        margin: 0;
        position: relative;
        margin-bottom: 20px;
    }

    .timeline-date {
        width: 5px;
        float: left;
        margin-top: 10px;
    }

    .timeline-content {
        width: 90%;
        float: left;
        border-left: 6px #dddd solid;
        padding-left: 30px;
    }

    .timeline-content:before {
        content: '';
        width: 5px;
        height: 28px;
        background: #b3c7d7;
        position: absolute;
        left: 5px;
        top: 0px;
        border-radius: 0%;
    }



    /* 横スクロール */
    /* https://kouhekikyozou.com/css_horizontal_scroll */
    .history3 {
        width: 100%;
        margin-top: 20px;
        overflow-x: scroll;
    }

    .history3 ul{
        display: flex;
        justify-content: space-between;
    }

    .history3 img {
        object-fit: cover;
        height: 200px;
        margin: 5px;
        flex-shrink: 0;
    }

    .history3::-webkit-scrollbar {
        height: 14px;
        /* スクロールバーの高さ */
    }

    .history3::-webkit-scrollbar-thumb {
        background: #B2B1B9;
        /* ツマミの色 */
        border-radius: 7px;
        /* ツマミ両端の丸み */
    }

    .history3::-webkit-scrollbar-track {
        background: #EDEDED;
        /* トラックの色 */
        border-radius: 7px;
        /* トラック両端の丸み */
    }

    /* ホバーアクション */
    /* https://pengi-n.co.jp/blog/horizontal-slideshow/ */
    .history3 img {
        transition: all 0.2s;
    }

    .history3 img:hover {
        transform: translateY(-20px);
        border-radius: 0 10%;
        box-shadow: 0 3px 10px 0 #333;
        /* opacity: 0.8; */
        cursor: pointer;
    }



    /* スクロールでふわっと */
    .mindtitle {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    /* ジャンプしたときの高さ調整 */
    .mindtitle a {
        display: block;
        height: 6rem;
        margin-top: -6rem;
        content: "";
    }

    .mindmain {
        opacity: 0;
        transform: translateY(-20px);
        transition: 3s ease;
    }

    .mindtitle {
        width: 100%;
        height: 200px;
        background-image: url(../img/about05.jpg);
        background-size: 100%;
        background-position: bottom;
        background-color: rgba(255, 255, 255, 0.35);
        background-blend-mode: lighten;
    }

    .mindtext {
        margin-left: 10%;
    }

    .mindtext h2 {
        text-align: left;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        font-weight: normal;
    }

    .eigomind {
        font-family: 'Montserrat', sans-serif;
        font-size: 40px;
    }

    .mindmain {
        width: 80%;
        margin: 0 auto;
        padding: 50px 0 10px 0;
    }

    .mind1 {
        width: 100%;
        font-family: 'Shippori Mincho', serif;
        font-size: 16px;
        letter-spacing: 10px;
        line-height: 40px;
    }

    .my {
        color: red;
        font-size: 32px;
    }

    .dots {
        line-height: 70px;
        font-size: 28px;
    }

    .mind2 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        margin: 0px auto 10px auto;
        font-weight: 500;
        font-size: 24px;
    }

    .mind2 h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 40px;
    }

    .mindmain2 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 100px;
    }

    .mindmain2 p {
        font-size: 16px;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        letter-spacing: 2px;
        line-height: 30px;
    }

    .skill {
        width: 100%;
        height: auto;
        background-image: url(../img/about_06.jpg);
        background-size: 100%;
    }

    .skill1 {
        width: 80%;
        margin: 0 auto;
        padding-top: 10px;
    }

    .skill1 h2 {
        margin-top: 20px;
        text-align: left;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        font-weight: normal;
    }

    .eigoskill {
        font-family: 'Montserrat', sans-serif;
        font-size: 40px;
    }

    .skill1 h3 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
    }

    .skill .skillbtn {
        margin: 20px auto;
    }



    /* ボタンアクション */
    .skillbtn {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        text-align: center;
    }

    .btn--skill,
    a.btn--skill {
        color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 5px 20px;
    }

    .btn--skill:hover,
    a.btn--skill:hover {
        color: #000000;
        background: #eee8e8;
    }

    a.btn--skill {
        border-radius: 100vh;
    }

    .skill2 {
        width: 80%;
        margin: 0 auto;
        padding-left: 15px;
        padding-bottom: 10px;
    }

    .skill2 img {
        width: 70%;
    }

    .icon1 ul {
        display: flex;
    }

    .icon2 ul {
        display: flex;
    }

    .contact {
        width: 90%;
        margin: 0 auto 30px auto;
    }

    .contact1 {
        width: 30%;
        margin: 10px auto 0 auto;
    }

    .contact1 img {
        width: 80%;
    }

    .contact2 h2 {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
    }

    .eigocontact {
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
        font-weight: 400;
    }

    .contact2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
        line-height: 25px;
        text-align: center;
    }

    .contacth2 p {
        height: 100px;
    }

    .contactbtn {
        margin: 0 auto;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 14px;
        text-align: center;
    }

    .btn--contact,
    a.btn--contact {
        color: #000000;
        background-color: #ffffff;
        border: 1px solid #000000;
        padding: 5px 30px;
    }

    .btn--contact:hover,
    a.btn--about:hover {
        color: #000000;
        background: #eee8e8;
    }

    a.btn--contact {
        border-radius: 100vh;
    }

}