@charset "UTF-8";

/* 
=======================================================*/

#pagetitle {
    background-image: url(../img/pagetitle-bg_service.png);
}

/*バッジを調整*/
.grecaptcha-badge {
    display: none;
}
/*改行を制御*/
.br_sp {
    display: none;
}
.br_tab {
    display: none;
}
@media screen and (max-width: 896px) {
    .br_tab {
        display: block;
    }
}
@media screen and (max-width: 480px) {
    .br_sp {
        display: block;
    }
}

/* サービス一覧 LINEUP
=======================================================*/

#service_top {
    width: 100%;
    padding: 150px 0;
}

#service_top .h2_box {
    margin-bottom: 100px;
}

#service_top .service_list {
    display: flex;
    gap: 10%;
    width: 86%;
    margin: 50px auto;
}

#service_top .service_list .list_item {
    position: relative;
    display: block;
    opacity: 0;
    transform: translate3d(0, 15px, 0);
    -webkit-transform: translate3d(0, 15px, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#service_top .service_list .list_item.on {
    animation: under-fadeIn 1s 0.95s forwards;
}
#service_top .service_list .list_item.on:nth-child(2) {
    animation-delay: 1.1s;
}
#service_top .service_list .list_item.on:nth-child(3) {
    animation-delay: 1.2s;
}
#service_top .service_list .list_item.on:nth-child(4) {
    animation-delay: 1.3s;
}

#service_top .service_list .list_item a img {
    width: 100%;
    height: auto;
    filter: contrast(65%);
    transition: 0.5s;
}

#service_top .service_list .list_item a p {
    position: absolute;
    bottom: -5px;
    left: 0;
    display: block;
    width: 100%;
    padding: 0 10px;
    background-color: var(--color_2);
    text-align: center;
    transition: 0.5s;
}

#service_top .service_list .list_item a p span {
    display: inline-block;
    color: var(--color_5);
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transition: 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#service_top .service_list .list_item:hover a p {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    letter-spacing: 0.2em;
    transition: 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#service_top .service_list .list_item:hover a p span {
    animation: down 1s infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@keyframes down {
    0% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, 5px, 0);
        -webkit-transform: translate3d(0, 5px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
}

#service_top .service_list .list_item:hover a img {
    filter: contrast(120%);
    transition: 1s;
}

@media screen and (max-width: 1024px) {
    #service_top {
        width: 86%;
        margin-top: -100px;
        padding: 180px 0;
    }

    #service_top .service_list {
        gap: 5%;
        width: 100%;
        margin: 50px auto;
    }
}

@media screen and (max-width: 896px) {
    #service_top .service_list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        width: 100%;
        margin: 50px auto;
    }

    #service_top .service_list .list_item {
        width: 40%;
    }
    #service_top .service_list .list_item:nth-child(1),
    #service_top .service_list .list_item:nth-child(2) {
        margin-right: 10%;
    }

    #service_top .service_list .list_item:nth-child(3),
    #service_top .service_list .list_item:nth-child(4) {
        margin-top: 40px;
        margin-left: 10%;
    }
}

@media screen and (max-width: 680px) {
    #service_top .service_list .list_item:nth-child(1),
    #service_top .service_list .list_item:nth-child(2) {
        margin-right: 8%;
    }

    #service_top .service_list .list_item:nth-child(3),
    #service_top .service_list .list_item:nth-child(4) {
        margin-left: 8%;
    }
}

@media screen and (max-width: 480px) {
    #service_top {
        padding-bottom: 50px;
    }
    #service_top .service_list .list_item {
        width: 40%;
        gap: 10px;
    }
    #service_top .service_list .list_item:nth-child(1),
    #service_top .service_list .list_item:nth-child(2) {
        margin-right: auto;
    }

    #service_top .service_list .list_item:nth-child(3),
    #service_top .service_list .list_item:nth-child(4) {
        margin-top: 20px;
        margin-left: auto;
    }

    #service_top .service_list .list_item a p {
        padding: 0;
    }
}

@media screen and (max-width: 424px) {
    #service_top .service_list .list_item a p {
        font-size: 13px;
    }
}

@media screen and (max-width: 350px) {
    #service_top .service_list .list_item a p {
        font-size: 11px;
    }
}

/* サービスリストコンテンツ*サービス詳細
=======================================================*/
.service_list_content {
    padding: 150px 0;
}
.service_list_content .content {
    margin: 0 auto;
    padding-top: 120px;
}
.service_list_content .content h2 {
    font-size: 50px;
    line-height: 1.4;
    opacity: 0;
    transform: translate3d(100px, 0, 0);
    -webkit-transform: translate3d(100px, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service_list_content .content h2.on {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transition: 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.service_list_content .content > p:first-of-type {
    font-weight: 500;
    line-height: 4;
    border-bottom: 1px solid #3333334d;
    opacity: 0;
}

.service_list_content .content > p:first-of-type.on {
    animation: fadeIn 1s ease-out 0.6s forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.content_container {
    display: flex;
    opacity: 0;
}
.content_container.on {
    animation: under-fadeIn 1s linear 1s forwards;
}

.content_container p {
    width: 40%;
    margin: 100px 50px;
    line-height: 2.4;
}

.content_container .inner_box {
    width: 60%;
    margin: 100px 50px;
    background-color: #9999991a;
    border-radius: 30px;
}
.inner_box table {
    margin: 30px 50px;
}

.inner_box table tr {
    height: 100px;
    border-top: #99999933 solid 1px;
}

.inner_box table tr:first-child {
    border-top: none;
}
.inner_box table tr:first-child > th,
.inner_box table tr:first-child > td {
    padding-top: 0;
}

.inner_box table th {
    width: 30%;
    padding-top: 30px;
    padding-left: 10px;
    font-weight: 700;
    vertical-align: top;
}

.inner_box table th span.q {
    display: inline-block;
    margin-left: 2px;
    font-size: 20px;
    transform-origin: left 90% 0;
    -webkit-transform-origin: left 90% 0;
    animation: question-anime 3.5s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@keyframes question-anime {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    15%,
    50% {
        transform: rotate(7deg);
        -webkit-transform: rotate(7deg);
    }
    60% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
    100% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
    }
}

.inner_box table th span.e {
    display: inline-block;
    margin-left: 5px;
    font-size: 20px;
    transform-origin: center 80% 0;
    -webkit-transform-origin: center 80% 0;
    animation: exclamation-anime 3s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
@keyframes exclamation-anime {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    5% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }
    15% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.inner_box table td {
    width: 70%;
    padding-top: 30px;
    padding-left: 10px;
    vertical-align: top;
}

.c1_save .content_container p,
.c1_seomeo .content_container p {
    width: 100%;
    margin: 50px;
}

@media screen and (max-width: 1024px) {
    .service_list_content .content {
        padding-top: 100px;
    }

    .service_list_content .content h2 {
        font-size: 44px;
    }

    .content_container p,
    .content_container .inner_box {
        width: 50%;
        margin: 50px 25px;
    }
    .inner_box table th,
    .inner_box table td {
        display: block;
        width: 100%;
        padding: 15px 0;
    }
    .inner_box table td {
        padding-top: 0;
        line-height: 1.6;
    }

    .c1_save .content_container p,
    .c1_seomeo .content_container p {
        padding: 0;
    }
}

@media screen and (max-width: 896px) {
    .service_list_content {
        padding-bottom: 0;
    }
    .service_list_content .content h2 {
        font-size: 40px;
        line-height: 1.4;
    }
    .content_container {
        display: block;
    }
    .content_container p,
    .content_container .inner_box {
        width: 100%;
        margin: 50px auto;
    }
    .inner_box table th {
        margin-top: 20px;
        padding-top: 0;
    }
    .inner_box table td {
        padding-bottom: 30px;
    }

    .c1_save .content_container p,
    .c1_seomeo .content_container p {
        margin: 50px 0;
    }
}

@media screen and (max-width: 480px) {
    .service_list_content {
        padding-top: 0;
    }
    .service_list_content .content {
        padding-top: 60px;
    }
    .service_list_content .content h2 {
        font-size: 28px;
        line-height: 1.4;
    }
    .service_list_content .content > p:first-of-type {
        font-weight: 400;
        line-height: 3;
    }
    .content_container p,
    .content_container .inner_box {
        margin: 20px auto;
        line-height: 2;
    }
    .inner_box table {
        margin: 30px 15px;
    }
    .c1_save .content_container p,
    .c1_seomeo .content_container p {
        margin: 20px 0;
    }
}

/* コーディネート例
=======================================================*/
#coordinate_example {
    position: relative;
    padding-top: 120px;
}
.bg-dot {
    position: absolute;
    top: -100px;
    right: 200px;
    width: 350px;
    height: 200px;
    z-index: -100;
    /*  ドット状の背景を作成  */
    background-image: radial-gradient(#eaeaea 20%, rgba(255, 255, 255, 0) 20%);
    background-size: 30px 30px;
}
.bg-dot::before {
    content: "";
    position: absolute;
    bottom: 100px;
    right: -100px;
    width: 250px;
    height: 300px;
    z-index: -100;
    border: #eaeaea solid 1.5px;
}
#coordinate_example > h3 {
    width: 86%;
    margin: 0 auto;
    font-size: 24px;
}

#coordinate_example > h3 > span {
    display: inline-block;
    opacity: 0;
}

#coordinate_example > h3 > span.on {
    animation: fade-blur 0.8s linear forwards;
}
@keyframes fade-blur {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#coordinate_example > h3 > span:nth-child(2).on {
    animation-delay: 1.2s;
}
#coordinate_example > h3 > span:nth-child(3).on {
    animation-delay: 2s;
}
#coordinate_example > h3 > span:last-child.on {
    animation-delay: 3s;
}
*/ #coordinate_example > h3 > .marker {
    font-weight: 500;
}

.example_container {
    position: relative;
    width: 86%;
    margin: 150px auto 250px;
}

.example_container .for {
    position: absolute;
    top: -15px;
    left: -5px;
    display: inline-block;
    width: 40%;
    font-size: 36px;
    z-index: 3;
    font-weight: bold;
    font-family: "Nothing You Could Do", cursive;
    letter-spacing: 0.2em;
    transform: rotate(-5deg) translateY(0);
    -webkit-transform: rotate(-5deg);
    opacity: 0;
    color: transparent;
    background-image: linear-gradient(90deg, var(--color_5), #ff6b6b 50%, transparent 50%, transparent);
    background-position: 100% 0;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: 200% 100%;
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.example_container .for.on {
    opacity: 1;
    transform: rotate(-5deg) translateY(-10px);
    transition: 1s;
    background-position: 0 0;
}

.example_container span {
    position: absolute;
    top: 75px;
    left: 10px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color_5), #ff6b6b);
    z-index: 2;
}
.example_container > span.on {
    animation: line 0.5s ease-out 1s forwards;
}
@keyframes line {
    0% {
        width: 0;
    }
    100% {
        width: 50px;
    }
}
.item_container {
    position: relative;
}

.example_container h3 {
    position: absolute;
    top: 46px;
    left: 0;
    width: 30%;
    padding-left: 70px;
    font-size: 24px;
    z-index: 2;
    opacity: 0;
}
.example_container h3.on {
    animation: textAnime 1s ease-out 1.8s forwards;
}
@keyframes textAnime {
    0% {
        top: 55px;
        opacity: 0;
    }
    100% {
        top: 46px;
        opacity: 1;
    }
}

/*例 背景.bg_box*/
.item_container .bg_box {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: bottom left;
    box-shadow: inset 0 0 15px 15px var(--color_2);
    z-index: -1;
}

.c_company .bg_box {
    background-image: url(../img/titlebg_company.jpg);
}
.c_shop .bg_box {
    background-image: url(../img/titlebg_shop.jpg);
}
.c_personal .bg_box {
    background-image: url(../img/titlebg_personal.jpg);
}
/*例 内容.item*/
.item_container .item {
    position: absolute;
    left: 10%;
    bottom: 14%;
    width: 12%;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.item_container .item.on {
    animation: itemFade 0.3s ease-in 2.8s forwards;
}
@keyframes itemFade {
    0% {
        transform: scale(0.5);
        -webkit-transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        opacity: 1;
    }
}
.item_container .item:nth-child(3) {
    left: 25%;
    bottom: 40%;
}
.item_container .item:nth-child(3).on {
    animation-delay: 2.95s;
}

.item_container .item:nth-child(5) {
    left: 63%;
    bottom: 40%;
}
.item_container .item:nth-child(5).on {
    animation-delay: 3.06s;
}
.item_container .item:nth-child(6) {
    left: 78%;
    bottom: 14%;
}
.item_container .item:nth-child(6).on {
    animation-delay: 3.2s;
}

.item_container .item img {
    width: 100%;
    height: auto;
}
/*センター画像*/
.item_container .item.center {
    left: calc(50% - 10%);
    bottom: 0;
    width: 20%;
    opacity: 1;
}
/*Web・デザインをトータルコーディネート*/
.text_box {
    position: relative;
    width: 100%;
    height: 220px;
}
.text_box h2 {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    font-size: 140px;
    font-weight: 900;
    line-height: 1.4;
    transform: scaleY(2);
    -webkit-transform: scaleY(2);
    color: var(--color_2);
    text-shadow: 1px 1px 0 #eaeaea, -1px -1px 0 #eaeaea, -1px 1px 0 #eaeaea, 1px -1px 0 #eaeaea, 0px 1px 0 #eaeaea, 0 -1px 0 #eaeaea, -1px 0 0 #eaeaea, 1px 0 0 #eaeaea;
    z-index: -10;
}
.text_box p {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 36px;
    color: var(--color_4);
    z-index: 10;
}
@media screen and (max-width: 1024px) {
    .bg-dot::before {
        bottom: 70px;
        height: 260px;
    }
    #coordinate_example > h3 {
        width: 86%;
        font-size: 24px;
    }
    .example_container {
        width: 86%;
        margin-top: 100px;
        margin-bottom: 200px;
    }
    .example_container .for {
        width: 50%;
    }
    .item_container .bg_box {
        height: 290px;
    }
    .item_container .item {
        left: 3%;
        bottom: 10%;
        width: 18%;
    }
    .item_container .item:nth-child(3) {
        left: 22%;
        bottom: 10%;
    }
    .item_container .item:nth-child(5) {
        left: 60%;
        bottom: 10%;
    }
    .item_container .item:nth-child(6) {
        left: 80%;
        bottom: 10%;
    }
    /*Web・デザインをトータルコーディネート*/
    .text_box {
        height: 160px;
    }
    .text_box h2 {
        font-size: 100px;
    }
    .text_box p {
        font-size: 24px;
    }
}

@media screen and (max-width: 896px) {
    .bg-dot {
        top: -100px;
        right: 150px;
        width: 300px;
        height: 180px;
    }
    .bg-dot::before {
        bottom: 70px;
        right: -80px;
        width: 200px;
        height: 260px;
    }
    #coordinate_example > h3 {
        width: 86%;
        font-size: 20px;
    }
    .example_container {
        margin-bottom: 150px;
    }
    .example_container h3 {
        padding-top: 10px;
        font-size: 16px;
    }
    .item_container .bg_box {
        height: 230px;
    }
    /*Web・デザインをトータルコーディネート*/
    .text_box {
        height: 120px;
    }
    .text_box h2 {
        font-size: 75px;
    }
}

@media screen and (max-width: 480px) {
    #coordinate_example {
        padding-top: 90px;
    }
    .bg-dot {
        top: -50px;
        left: 25%;
        width: 180px;
        height: 100px;
        background-size: 15px 15px;
    }
    .bg-dot::before {
        bottom: 50px;
        right: -80px;
        width: 60%;
        height: 160px;
    }
    #coordinate_example > h3 {
        font-size: 16px;
    }
    .item_container .bg_box {
        height: 350px;
    }
    .example_container {
        margin: 80px auto;
    }
    .example_container .for {
        width: 90%;
        font-size: 34px;
    }
    .example_container span {
        top: 53px;
    }

    .example_container h3 {
        width: 90%;
        margin-top: -20px;
    }
    .item_container .item {
        left: 5%;
        bottom: 40%;
        width: 40%;
    }
    .item_container .item:nth-child(3) {
        left: 45%;
        bottom: 40%;
    }
    .item_container .item:nth-child(5) {
        left: 27%;
        bottom: 7%;
    }
    .item_container .item:nth-child(6) {
        left: 65%;
        bottom: 7%;
    }

    /*センター画像*/
    .item_container .item.center {
        left: 3px;
        bottom: 12px;
        width: 26%;
    }
    /*Web・デザインをトータルコーディネート*/
    .text_box {
        height: 60px;
    }
    .text_box h2 {
        font-size: 36px;
    }
    .text_box p {
        font-size: 16px;
    }
}
@media screen and (max-width: 373px) {
    .example_container .for {
        font-size: 30px;
    }

    .text_box {
        height: 50px;
    }
    .text_box h2 {
        font-size: 28px;
    }
    .text_box p {
        font-size: 13px;
    }
}
@media screen and (max-width: 300px) {
    .text_box {
        height: 50px;
    }
    .text_box h2 {
        font-size: 24px;
    }
    .text_box p {
        font-size: 12px;
        letter-spacing: 0.01em;
    }
}
/* フロー
=======================================================*/
#flow{    
    width: 86%;
    max-width: 1280px;
    margin: 100px auto;
    padding-top: 50px;
}

#flow .title {
    position: relative;
    display: inline-block;
    font-size: 48px;
    letter-spacing: 0.2em;
    line-height: 2;
    margin: 50px auto 0;
    padding: 50px 0 0;
}
#flow .title::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 10px;
    background-color: var(--color_1);
}
#flow .title_p {
    opacity: 0;
}
#flow .title_p.on {
    opacity: 1;
    transition: 1s;
}
.flow_container{
    position: relative;
}

.flow_line{
    position: absolute;
    top: 0;
    left: 25%;
    width: 1px;
    height: 0;
    background-color: #99999980;
}
.flow_container.on .flow_line{
    /*animation: flowAnime 5s linear .5s forwards;*/
    height: 100%;
    transition: 7s;
}

.flow_item{
    display: flex;
    gap: 15%;
    width: 100%;
    margin: 80px auto;
    padding-left: calc(25% - 5px);
    opacity: 0;
}
.flow_container.on .flow_item{
    animation: flowAnime .8s linear .5s forwards;
}
@keyframes flowAnime{
    0% { opacity: 0;}
    100% { opacity: 1;}
}
.flow_container.on .flow_item:nth-of-type(2){
    animation: flowAnime .8s linear 1.2s forwards;
}

.flow_container.on .flow_item:nth-of-type(3){
    animation: flowAnime .8s linear 1.9s forwards;
}

.flow_container.on .flow_item:nth-of-type(4){
    animation: flowAnime .8s linear 2.6s forwards;
}
.flow_container.on .flow_item:nth-of-type(5){
    animation: flowAnime .8s linear 3.3s forwards;
}
.flow_container.on .flow_item:nth-of-type(6){
    animation: flowAnime .8s linear 4s forwards;
}
.flow_container.on .flow_item:nth-of-type(7){
    animation: flowAnime .8s linear 4.7s forwards;
}


.flow_item .flow_point{
    width: 10px;
    height: 10px;
    background-color: #ff6b6b;
    border-radius: 50%;
    z-index: 1;
}

.flow_item .item_box{
    position: relative;
    width: 50%;
    margin-top: -1em;
    padding-bottom: 10px;
    border-bottom: var(--color_4) 1px solid;
}
.flow_item .item_box::after{
    content: "";
    position: absolute;
    top: calc(100% - 10px);
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    border-left: var(--color_4) 1px solid;
    border-bottom: var(--color_4) 1px solid;
    background-color: var(--color_2);
    transform: rotate(-45deg);
}
.flow_container.on .flow_item:nth-of-type(7) .item_box::after{
    display: none;
}


.flow_item .item_box h3{
    font-size: 20px;
    font-weight: 500;
}
.flow_item .item_box p{
    line-height: 1.6em;
}
#flow > p:last-child{
    color: var(--color_4);
    font-size: 14px;
    padding-left: 25%;
}
@media screen and (max-width: 1024px) {
    #flow > p:last-child{
        padding-right: 25%;
    }
}

@media screen and (max-width: 896px) {
    #flow .title {
        font-size: 36px;
    }
    .flow_item{
        margin: 50px auto 80px;
    }
    #flow > p:last-child{
        padding-left: 10%;
        padding-right: 10%;
        line-height: 1.4em;
    }
}

@media screen and (max-width: 480px) {
    #flow{    
        margin: 0px auto;
        padding-top: 30px;
    }
    #flow .title {
        font-size: 24px;
        padding: 30px 0 0;
    }
    .flow_line{
        left: 10%;
    }
    .flow_item{
        gap: 15%;
        margin: 50px auto;
        padding-left: calc(10% - 5px);
    }
    .flow_item .item_box{
        width: 70%;
    }
}

