@charset "utf-8";

.subvisual {
    background-image: url("./image/visual.jpg");
    background-repeat: no-repeat;
}

/* introduction */
#introduction {
    margin-top: 84px;
    text-align: center;
}

#introduction .catch {
    display: flex;
    justify-content: center;
    margin: 0 auto 36px;
}

#introduction .circle {
    position: absolute;
    left: calc(50% - 5%);
    top: 0;
    z-index: -10;
    background-color: #fcf0f2;
    padding-top: 10%;
    width: 10%;
    animation-name: puyopuyo;
    animation-duration: 20.0s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

@media screen and (max-width:750px) {
    .ua-sp #introduction .circle {
        left: calc(50% - 20%);
        padding-top: 40%;
        width: 40%;
    }
}

@keyframes puyopuyo{  
    0%{
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14%{
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28%{
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42%{
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56%{
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70%{
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84%{
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
    100%{
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
}


/* works */
#works {
    margin-top: 96px;
}

#works h2 {
    margin-bottom: 30px;
    text-align: center;
}
#works h2 span {
    display: block;
    color: #f2909e;
    font-weight: 400;
}

#works .intro {
    text-align: center;
    margin-bottom: 60px;
}

#works #tab {
	zoom: 1;
	background: #eee;
	border-bottom: 3px solid #f2909e;
	list-style: none;
    margin-bottom: 60px;
	padding: 0;
    overflow: hidden;
    border-top-left-radius: 1em;
    border-top-right-radius: 1em;
}
#works #tab:after {
	content:"";
	display: block;
	height:0px;
	clear:both;
	line-height:0;
	visibility:hidden;
}
#works #tab li {
	float: left;
	width: 50%;
	text-align: center;
	border-right: 1px dotted #fff;
    box-sizing: border-box;
}
#recruit #tab li:last-child {
	background: none;
	border-right: none;
}
#works #tab li a {
	display: block;
	padding: 1em 0;
	text-decoration: none;
	color: #222;
    transition: .2s;
}
#works #tab li a:hover {
	background: #f2909e;
	color: #fff;
}
#works ul#tab li.active,
#works ul#tab li.active a,
#works ul#tab li.active a:hover {
	background: #f2909e;
	color: #fff;
}

#works .tabbox {
    display: none;
}

#works .sec-block {
    margin-bottom: 60px;
}

#works .sec-title {
    padding-bottom: .25em;
    margin-bottom: 1em;
    border-bottom: 1px solid #f2909e;
}

#works .works-title {
    display: inline-block;
    letter-spacing: 0.2ex;
    border-bottom: 2px solid #282828;
    line-height: 1.4;
    margin-bottom: 24px;
}
#works .area {
    color: #777;
}

#works .vr-img {
    border-radius: 12px;
}
#works .vr-img::before {
    padding-top: 440px;
}
#works .vr-img img {
    height: 440px;
    object-fit: cover;
}
#works .vr-btn {
    margin-top: 36px;
    text-align: center;
}

#works .img-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
    margin-top: 36px;
}
#works .img-list li {
    display: block;
    width: calc(33.33% - 24px);
    margin-right: 36px;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 36px;
}
#works .img-list li:nth-child(3n) {
    margin-right: 0;
}
#works .img-list .img-btn {
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
}
#works .img-list .img-btn:hover {
    color: inherit;
}
#works .img-list .img-btn::before {
    padding-top: 262px;
}
#works .img-list img {
    width: auto;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
}
#works .img-list .material-icons {
    font-size: 96px;
}

#works .floor3d-list li {
    width: calc(50% - 24px) !important;
    margin-right: 48px;
    margin-bottom: 36px;
}
#works .floor3d-list li:nth-child(even) {
    margin-right: 0;
}
#works .floor3d-list .img-btn::before {
    padding-top: 405px;
}

@media screen and (max-width:1000px) {
    #works .img-list li {
        width: calc(50% - 18px);
    }
    #works .img-list li:nth-child(3n) {
        margin-right: 36px;
    }
    #works .img-list li:nth-child(even) {
        margin-right: 0;
    }
    #works .img-list .img-btn::before {
        padding-top: 330px;
    }
}

@media screen and (max-width:800px) {
    #works .img-list .img-btn::before {
        padding-top: 254px;
    }
}




