@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 {
        background-color: #f6f3ee;
        min-width: 1000px;
    }

    /* PCcss */
    .spheader {
        display: none;
    }


    html {
        scroll-behavior: smooth;
    }

    .container {
        width: 100%;
    }

    ul {
        list-style: none;
    }

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


    /* ページトップのボタン */
    /* 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;
    }

    .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);
        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;
    }

    /* ホバーでアンダーライン */
    /* 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（相対値）伸長*/
    }

    .hp {
        width: 80%;
        margin-top: 100px;
        margin: 100px auto 0 auto;
    }

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

    hr.style1 {
        border-top: 1px solid #8c8b8b;
        width: 100%;
        margin: 0 auto;
    }

    .hp1 ul {
        display: flex;
    }

    .hp1 img {
        width: 80%;
        box-shadow: 4px 4px 5px #ccc;
        height: 350px;
        object-fit: cover;
    }

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

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

    .hp1 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .logo {
        width: 80%;
        margin-top: 100px;
        margin: 100px auto 0 auto;
    }

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

    .logo1 ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo1 img {
        width: 80%;
        box-shadow: 4px 4px 5px #ccc;
        height: auto;
        object-fit: cover;
    }

    .logo1 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

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

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

    .logo2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .logo2 img {
        width: 27%;
        box-shadow: 4px 4px 5px #ccc;
        height: auto;
        object-fit: cover;
    }

    .logo2 li {
        list-style: none;
    }

    .logo2 {
        margin-top: 50px;
    }

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

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

    .logo2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .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%;
    }

    /* PCcss */
    .spheader {
        display: none;
    }

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

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


    /* ページトップのボタン */
    /* 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;
    }

    .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);
        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;
    }

    /* ホバーでアンダーライン */
    /* 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（相対値）伸長*/
    }

    .hp {
        width: 80%;
        margin-top: 100px;
        margin: 100px auto 0 auto;
    }

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

    hr.style1 {
        border-top: 1px solid #8c8b8b;
        width: 100%;
        margin: 0 auto;
    }

    .hp1 ul {
        display: flex;
    }

    .hp1 img {
        width: 80%;
        box-shadow: 4px 4px 5px #ccc;
        height: 350px;
        object-fit: cover;
    }

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

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

    .hp1 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .logo {
        width: 80%;
        margin-top: 100px;
        margin: 100px auto 0 auto;
    }

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

    .logo1 ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo1 img {
        width: 80%;
        box-shadow: 4px 4px 5px #ccc;
        height: auto;
        object-fit: cover;
    }

    .logo1 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

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

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

    .logo2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .logo2 img {
        width: 27%;
        box-shadow: 4px 4px 5px #ccc;
        height: auto;
        object-fit: cover;
    }

    .logo2 li {
        list-style: none;
    }

    .logo2 {
        margin-top: 50px;
    }

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

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

    .logo2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .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 {
        background-color: #f6f3ee;
        max-width: 599px;
    }

    .container {
        width: 100%;
    }

    /* タブレットcss */

    .header {
        display: none;
    }

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

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


    /* ページトップのボタン */
    /* 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;
    }

    .spheader {
        width: 100%;
        background-size: 100%;
        background-repeat: none;
    }

    .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);
        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;
    }

    /* ホバーでアンダーライン */
    /* 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（相対値）伸長*/
    }

    .hp {
        width: 80%;
        margin-top: 100px;
        margin: 40px auto 0 auto;
    }

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

    hr.style1 {
        border-top: 1px solid #8c8b8b;
        width: 100%;
        margin: 0 auto;
    }


    .hp1 img {
        width: 80%;
        box-shadow: 4px 4px 5px #ccc;
        height: 300px;
        object-fit: cover;
        margin-top: 40px;
    }

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

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

    .hp1 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .logo {
        width: 80%;
        margin-top: 100px;
        margin: 100px auto 0 auto;
    }

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



    .logo1 img {
        width: 60%;
        box-shadow: 4px 4px 5px #ccc;
        height: auto;
        object-fit: cover;
        margin-top: 40px;
    }

    .logo1 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

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

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

    .logo2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .logo2 img {
        width: 60%;
        box-shadow: 4px 4px 5px #ccc;
        height: auto;
        object-fit: cover;
    }

    .logo2 li {
        list-style: none;
    }

    .logo2 {
        margin-top: 50px;
    }

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

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

    .logo2 p {
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-weight: 500;
        font-size: 18px;
        margin-top: 10px;
    }

    .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;
    }



}