@charset "utf-8";

/*基本設定*/
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-width: 320px;
    width: 100vw;
    height: 100vh;
}
body{
    display: block;
    margin: 0;
    padding: 0;
    color: #232323;
    background-color: #f8f5f2;
    font-size: 1.3rem;
    font-family: reitam, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.wrapper {
    margin: 0;
    padding: 0;
    overflow: hidden;
}
h2 {
    font-size: 1.5rem;
    color: #232323;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-weight: bold;
}
p {
    font-family: dnp-shuei-mgothic-std, sans-serif;
}
/*スクロールフェードイン*/
.fade-in {
    opacity: 0;
    transition-duration: 500ms;
    transition-property: opacity, transform;
}
.fade-in-up {
    transform: translate(0, 50px);
}
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}
/*--------------------------------------------------------*/
.start {
	background: #078080;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}
.fulfilling-square-spinner , .fulfilling-square-spinner * {
    box-sizing: border-box;
}
.fulfilling-square-spinner {
    height: 50px;
    width: 50px;
    left: 50%;
    top: 50%;
    position: relative;
    border: 4px solid #232323;
    animation: fulfilling-square-spinner-animation 4s infinite ease;
}
.fulfilling-square-spinner .spinner-inner {
    vertical-align: top;
    display: inline-block;
    background-color: #f8f5f2;
    width: 100%;
    opacity: 1;
    animation: fulfilling-square-spinner-inner-animation 4s infinite ease-in;
}
@keyframes fulfilling-square-spinner-animation {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes fulfilling-square-spinner-inner-animation {
    0% {
        height: 0%;
    }
    25% {
        height: 0%;
    }
    50% {
        height: 100%;
    }
    75% {
        height: 100%;
    }
    100% {
        height: 0%;
    }
}
/*---------------------------------------------------ヘッダー*/
.header_container {
    margin: 30px auto;
    width: 100%;
    text-align: center;
}
.header_container ul{
    display: flex;
    flex-flow: wrap;
    position: absolute;
    right: 5.5vw;
    list-style: none;
}
.header_container ul a {
    text-decoration: none;
    color: #232323;
    margin-left: 2.75vw;
}
.header_container ul li {
    font-size: 12px;
    background: #f8f5f2;
    border: 3px solid #232323;
    border-radius: 60px;
    color: #232323;
    display: block;
    font-weight: bold;
    max-width: 300px;
    padding: 10px 20px;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.header_container ul li::after {
    background: #078080;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}
.header_container ul li:hover {
    color: #f8f5f2;
}
.header_container ul li:hover::after {
    transform: scale(1, 1);
}
/*--------------------------------------------メインビジュアル*/
.main_visual_text {
    margin: 250px auto;
    /*height: 200px;*/
    width: 940px;
    position: relative;
}
.main_visual_text h1 {
    font-size: 1.8rem;
    letter-spacing: 0.5em;
    padding-left: 20px;
    font-weight: bold;
}
/*-----------------------------------------------------スキル*/
#skills {
    margin-bottom: 150px;
    width: 100%;
}
#skills .skills_02{
    width: 100vw;
    margin: 0 auto;
    padding: 150px 0;
    text-align: center;
}
#skills h2{
    margin-bottom: 70px;
    text-align: center;
    
}
.skills_container {
    width: 81.25vw;
    margin: 5vw auto 7.5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.skill {
    width: 280px;
    height: 400px;
    display: block;
    background-color: #fffffe;
    border: solid 9px #232323;
    border-radius: 30px;
    margin-bottom: 35px;
    text-align: center;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    
}
.skill_container {
    margin: 35px;
    text-align: center;
}
.skill_container img {
    width: 90px;
    height: auto;
}
.skill_container h4 {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
.skill_container p {
    padding-top: 30px;
    font-size: 1rem;
}
/*-------------------------------------------------プロダクト*/
#products {
    background-color: #fffffe;
    width: 100%;
}
.products_container {
    width: 100vw;
    margin: 0 auto;
    padding: 150px 0;
    text-align: center;
}
.products_container h2 {
    text-align: center;
    margin-bottom: 100px;
}
.web_products_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.product {
    width: 430px;
    text-align: center;
    margin-bottom: 150px;
}
.product img {
    width: 350px;
    height: auto;
}
.product h4 {
    padding: 30px 0;
    text-align: center;
}
/*-------------------------------------------------コンセプト*/
#concepts {
    background-color: #f8f5f2;
}
.concepts_page {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 150px 0 ;
    text-align: center;
}
.concepts_page h2 {
    text-align: center;
    margin-bottom: 80px;
}
.web_concepts {
    text-align: center;
}
.web_concepts img {
    width: 600px;
    height: auto;
}
.concept_text h2{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    font-size: 2rem;
}
.concept_text h3 {
    width: 100%;
    text-align: center;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    letter-spacing: 0.3rem;
    font-size: 1.1rem;
    line-height:1.7em;
}
/*---------------------------------------------------自己紹介*/
#about {
    background-color: #fffffe;
}
.about_page {
    padding: 70px 0 30px;
    text-align: center;
}
.about_page img {
    width: 100%;
    height: auto;
}
.about_text {
    display: inline-block;
    width: 100vw;
    padding: 50px;
    box-sizing: border-box;
}
.about_text h2 {
    padding: 20px 0;
    letter-spacing: 1.2;
    font-size: 1.1rem;
}
.about_text p {
    font-size: 0.8rem;
}

/*---------------------------------------------------フッター*/
footer {
    margin: 0;
    padding: 0;
    width: 100%;
}
.crunchify-top:hover {
	color: #fffffe !important;
	background-color: #078080;
	text-decoration: none;
}
.crunchify-top {
display: none;
position: fixed;
bottom: 1rem;
right: 1rem;
width: 3.2rem;
height: 3.2rem;
line-height: 3.2rem;
font-size: 1.4rem;
color: #fffffe;
background-color: rgba(0,0,0,0.3);
text-decoration: none;
border-radius: 3.2rem;
text-align: center;
cursor: pointer;
}
.footer_text a{
    font-size: 0.7rem;
    font-family: dnp-shuei-mgothic-std, sans-serif;
}
/*---------------------------------------------------タブレット*/
@media screen and (max-width: 768px){
    /*ヘッダー*/
    .nav_menu {
        width: 100vw;
    }
    .header_container ul li {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    .header_container ul a {
        margin-left: 1.2vw;
    }
    /*スキル*/
    .skills_container {
        width: 90vw;
    }
    /*プロダクト*/
    .products_container {
        width: 100%;
        padding: 50px 0;
    }
    .product {
        margin-bottom: 50px;
    }
    /*コンセプト*/
    .concepts_page {
        padding: 100px 0;
    }
    .concept_text {
        display: inline;
    }
    .concept_text h3{
        font-size: 0.8rem;
    }
    /*アバウト*/
    .about_text {
        width: 100vw;
        box-sizing: border-box;
        padding:  20px;
    }

}