@charset "utf-8";
/* by https://webtan.tech/ */



*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-size: 18px;
    line-height: 1.6;
    color: #2f2f4b;
    font-family: "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    vertical-align: top;
}

p+p {
    margin-top: 15px;
}

.bg_gradient {

    background: rgb(34, 193, 195);
    background: linear-gradient(45deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
}

.bg_green {
    background: rgb(34, 193, 195);
    color: #fff;

}

.bg_yellow {
    background: rgb(253, 187, 45);
    color: #fff;

}

.header {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header h1 {
    color:rgba(0,0,0,.0);
  text-align:center;
   -webkit-text-stroke: 1px #FFF;
    font-size: 80px;
}

section {
    padding: 60px 0;
}

.inner {
    width: 960px;
    max-width: 90%;
    margin: 0 auto;
}

.title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.title:before, .title:after {
    border-top: 1px solid;
    content: "";
    width: 3em;
}

.title:before {
    margin-right: 1em;
}

.title:after {
    margin-left: 1em;
}
.profole_img{
    float: left;
    margin: 0 15px 10px 0;
}
.about_box {
    border: 3px solid #fff;
    background: #33b7b9;
    width: 80%;
    padding: 30px;
    margin-bottom: 40px;
}

.about_box:nth-of-type(even) {
    margin-left: auto;
}

.about_box h3 {
    font-size: 24px;
    display: inline-block;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    margin-bottom: 30px;
}

.works_gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery_box {
    width: 300px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
}

.gallery_box>p {
    margin: 0 0 20px;
}

.works_img {
    background: #22c1c3;
    background: linear-gradient(45deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
	padding: 10px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.gallery_box:nth-of-type(even) .works_img {
    background: #22c1c3;
    background: linear-gradient(45deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);

}

.works_info {
    margin-top: auto;
    background: #eee;
    padding: 10px;
    font-size: 14px;
}


.contact_btn {
    text-align: center;
}

.contact_btn a {
    border: 1px solid #22c1c3;
    border-radius: 30px;
    padding: 10px 90px;
    display: inline-block;
    margin: 30px 0;
    color: #22c1c3;
    text-decoration: none;
    background-color: #fff;
}

.contact_btn a:hover {
    background-color: #c8dedf;
}

.copyright {
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.footer_logo {
    text-align: center;
    padding: 20px 0;
}

.footer_logo img {
    width: 300px;
}
	
@media screen and (max-width:1000px) {
    .works_gallery {
        justify-content: center;
    }
    .gallery_box {
        margin: 15px;
    }
}
@media screen and (max-width:600px) {
    .profole_img{
        width: 45%;
    }
    .about_box {
        width: 90%;
        margin: 0 auto 50px;
    }
    .gallery_box {
        margin: 0 auto 50px;

    }
	.header h1 {
    color:rgba(0,0,0,.0);
  text-align:center;
   -webkit-text-stroke: 1px #FFF;
    font-size: 45px;
}
}