/* CANAHN */


/* MV -------------------------------------------------- */

#index #mv {
    position: relative;
    height: 100vh;
    padding: 0px 0px 0px 0px;
    margin: 0px auto 0px;
    }

#mv::after {
    z-index: 1;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(50,60,80,0.05);
    background-image: radial-gradient(#000 30%, transparent 31%), radial-gradient(#000 30%, transparent 31%);
    background-size: 2px 2px;
    background-position: 0 0, 2px 2px;
    }

#mv video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: center;
    }

.mv-logo {
    z-index: 4!important;
    position: relative;
    border: 0px solid #fff;
    background-image: url(img/logo.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 400px;
    height: 300px;
    margin: calc(50vh - 200px) auto 0px;
    font-size: 0px;
    color: transparent;
    }

.title-box {
    z-index: 2!important;
    position: relative;
    margin-top: 35vh;
    filter: drop-shadow(0px 0px 5px rgba(255,255,255,1));
    animation: title-light 4s ease-in-out infinite;
    }

@keyframes title-light {
    0% { filter: drop-shadow(0px 0px 0px rgba(255,255,255,1)); }
    50% { filter: drop-shadow(0px 0px 8px rgba(255,255,255,1)); }
    100% { filter: drop-shadow(0px 0px 0px rgba(255,255,255,1)); }
    }

.title {
    text-transform: uppercase;
    text-align: center;
    font-family: "Oswald",sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: transparent;
    letter-spacing: 2px;
    line-height: 1.2em;
    -webkit-text-stroke: #fff 1.2px;
    }

.title-sub {
    text-transform: uppercase;
    text-align: center;
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    line-height: 1em;
    letter-spacing: .3em;
    text-indent: 1.3em;
    }

.scroll {
    z-index: 10!important;
    position: absolute; bottom: 0%; left: 50%;
    background-color: #fff;
    width: 0.5px;
    height: 100px;
    animation: scroll ease-in-out 2.8s infinite;
    }

@keyframes scroll {
 0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    50%{
        transform-origin: top;
        transform: scaleY(1);
    }
    51%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(0);
    }
    }


/* main -------------------------------------------------- */

main {
    position: relative;
    background-color: #fefafd; /* 111216 */
    /* background: linear-gradient( 180deg, #111216, #121626 ); */
    /* background: linear-gradient( 180deg, #222633, #506680, #7086aa ); */
    /* background: linear-gradient( 180deg, #223366, #fff, #dd9988 ); */
    padding: 0px;
    margin: 0px auto;
    }

h3 {
    border-bottom: 1px solid transparent;
    width: 100%;
    padding-bottom: 10px;
    margin: 0px auto 30px;
    font-family: "Orbitron",sans-serif;
    font-size: 70px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: #333 1px;
    line-height: 1em;
    letter-spacing: 3px;
    transition: .6s;
    }

#index main {
    overflow: hidden;
    /* border-top: 1px #fff solid; */
    }

#index section {
    z-index: 1;
    position: relative;
    padding: 50px 0px 80px 0px;
    margin: 0px auto 0px auto;
    }


#index section:hover h3 {
    letter-spacing: 4px;
    border-bottom: 0px solid transparent;
    filter: drop-shadow(0px 0px 5px rgba(255,255,255,1));
    transition: .4s;
    }

/*
#index section:hover h3::after {
    z-index: -1;
    content: "WORKS";
    opacity: 0.5;
    position: absolute; top: 1; left: 1;
    border-bottom: px solid #fff;
    -webkit-text-stroke: #22ccff 2px;
    letter-spacing: 4px;
    filter: none;
    transition: .4s;
    }
*/

main section p {
    margin: 0px auto 20px;
    letter-spacing: .04em;
    line-height: 1.8em;
    }



/* ----------------------------------------------------------------------------------------- */


/* LANGUEAGE -------------------------------------------------- */

#lang {
    display: flex;
    justify-content: center;
    }

#lang .lang {
    display: block;
    border: 0.5px solid #000;
    width: 160px;
    padding: 10px 5px;
    margin: 0px 10px;
    color: #000;
    text-align: center;
    line-height: 1em;
    text-transform: uppercase;
    font-size: 13px;
    }

#lang a:link { }
#lang a:visited { color: #000; }
#lang a:hover { opacity: 0.3; }
#lang a:active {  }

#lang .chosen { opacity: 0.3; }


/* ABOUT -------------------------------------------------- */

.about-srv {
    margin: 20px auto 20px;
    text-align: center;
    }

.about-srv div {
    display: inline-block;
    border-radius: 5px;
    border: 0.5px solid #fff;
    background: linear-gradient(45deg, #c876d6 ,#f0a5c5); /* #d980b0;*/
    padding: 5px 15px;
    margin: 0px 5px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    }


.points {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px auto 0px;
    color: #c356d6;
    text-transform: uppercase;
    }

.point {
    border: 0px dotted #aaa;
    width: 20%;
    height: ;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6em;
    }

.point span {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-size: 70px;
    font-weight: 800;
    line-height: 1em;
    }

/* WORKS -------------------------------------------------- */

#works {

    }

#works p {
    margin: -20px 0px 50px;
    font-size: 14px;
    text-align: center;
    color: rgba(0,0,0,0.4);
    }

#works .ct {
    display: flex;
    flex-wrap: wrap;
    border: 0px dotted #aaa;
    width: 100%;
        max-width: 1600px;
    margin: 0px auto;
    }

#works .work {
    border: 0px solid #000;
    background-color: rgba(0,0,0,0.1);
    background-size: cover;
    background-position: center;
    width: 20%;
    height: 20vw;
        max-height: 320px;
    }

#works .work .work-ct {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    padding: 5%;
    color: #fff;
    text-align: center;
    transition: .6s;
    }

#works .work:hover .work-ct {
    opacity: 1;
    }



.logo08-0 { background-image: url(img/works/logo-08-swim-c0.webp); }
.logo08-1 { background-image: url(img/works/logo-08-swim-c1.webp); }

.logo07-0 { background-image: url(img/works/logo-07-bc-c0.webp); }
.logo06-1 { background-image: url(img/works/logo-06-co-c1.webp); }

.logo05-0 { background-image: url(img/works/logo-05-kirisame-c0.webp); }
.logo05-1 { background-image: url(img/works/logo-05-kirisame-c1.webp); }

.logo04-0 { background-image: url(img/works/logo-04-jeneva-c0.webp); }
.logo04-1 { background-image: url(img/works/logo-04-jeneva-c1.webp); }

.logo03-0 { background-image: url(img/works/logo-03-north-c0.webp); }
.logo03-1 { background-image: url(img/works/logo-03-north-c1.webp); }

.logo02-0 { background-image: url(img/works/logo-02-montieri-c0.webp); }
.logo02-1 { background-image: url(img/works/logo-02-montieri-c1.webp); }

.logo01-1 { background-image: url(img/works/logo-01-miquene-black.webp); }
.logo01-2 { background-image: url(img/works/logo-01-miquene-c1.webp); }
.logo01-3 { background-image: url(img/works/logo-01-miquene-c0.webp); }

.logo-cobra-1 { background-image: url(img/works/logo-cobra-c1.webp); }
.logo-cnn-02-0 { background-image: url(img/works/logo-canahn-02-c0.webp); }
.logo-cnn-02-1 { background-image: url(img/works/logo-canahn-02-c1.webp); }
.logo-cnn-02-2 { background-image: url(img/works/logo-canahn-02-c2.webp); }
.logo-cnn-01-0 { background-image: url(img/works/logo-canahn-01-c0.jpg); }

/* SERVICES -------------------------------------------------- */

#services .section-inner {
    display: block;
    flex-wrap: wrap;
    border: 0px solid red;
    width: 100%;
    max-width: 100%;
    }

#services h3 {
    width: 90%;
    max-width: 1200px;
    }

.srv {
    box-sizing: border-box;
    border: 0px solid #fff;
    background-image: url(img/photo-cloud.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    padding: 20px 30px 80px 30px;
    color: #fff;
    text-shadow: 0px 0px 4px rgba(0,0,0,0.4);
    text-align: left;
    }

.srv-innerCnt {
    border: 0px solid #fff;
    max-width: 1200px;
    margin: 0px auto;
    }

.branding { background-image: url(img/photo-sky2.jpg); }
.webdesign { background-image: url(img/photo-stone.jpg); background-position: left top; }
.coding { background-image: url(img/photo-jungle.jpg); background-position: center top; }
.paper { background-image: url(img/photo-sky4.jpg); }

.srv-name-jp {
    font-size: 12px;
    font-weight: 100;
    line-height: 1em;
    margin: 0px;
    }

.srv-name-eng {
    font-size: 60px;
    font-weight: 600;
    line-height: 1em;
    }

.srv-innerBox {
    display: flex;
    justify-content: space-between;
    }

.srv-info {
    box-sizing: border-box;
    border: 0px solid #fff;
    text-align: left;
    width: 48%;
    }

.srv-info .copy-big {
    text-align: left;
    }

.srv-BoxRight {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    border: 0px solid #fff;
    width: 48%;
    }

.branding-img {
    background-image: url(img/srv-branding.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    }

.wd-img {
    background-image: url(img/srv-wd.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    }

.print-img {
    background-image: url(img/srv-print.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    }

.coding-img {
    background-image: url(img/srv-coding.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 350px;
    }


.carousel-cnt {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    border: 0px solid #fff;
    background-color: rgba(0,0,0,0.3);
    width: 100vw; /* カルーセルの幅 */
    padding: 20px 0px;
    margin: 50px 0px 0px -30px;
    }

.carousel-cnt:hover .carousel-track {
    animation-play-state: paused;
    }

.carousel-track {
    display: flex;
    border: 0px solid #fff;
    width: fit-content;
    animation: carousel 80s linear infinite;
    }

@keyframes carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
    }

.carousel-item {
    box-sizing: border-box;
    border: 0px solid #ccc;
    background-size: cover;
    background-position: center;
    min-width: 180px; /* カルーセルのアイテムの幅 */
    padding: 20px;
    margin: 0px 10px;
    font-size: 0px;
    box-shadow: 0px 0px #000;
    }

.wd {
    background-size: cover;
    min-width: 290px;
    }

.appIcon {
    background-size: cover;
    width: ;
    height: 180px;
    }

/* サンプルの画像 ---------- */

/* Web Design */
.wd-006 { background-image: url(img/works/wd-006.jpg); }
.wd-005 { background-image: url(img/works/wd-005.jpg); }
.wd-004 { background-image: url(img/works/wd-004.jpg); background-position: top; }
.wd-003 { background-image: url(img/works/wd-003.jpg); background-position: top; }
.wd-002 { background-image: url(img/works/wd-002.jpg); }
.wd-001 { background-image: url(img/works/wd-001.jpg); }

/* Banner */
.bnr-003 { background-image: url(img/works/bnr-003-1.jpg); }
.bnr-002 { background-image: url(img/works/bnr-002-2.jpg); }
.bnr-001 { background-image: url(img/works/bnr-001-1.jpg); }

/* App Icon */
.appIcon-007 { background-image: url(img/works/app-icon-007.png); }
.appIcon-006 { background-image: url(img/works/app-icon-006.png); }
.appIcon-005 { background-image: url(img/works/app-icon-005.png); }
.appIcon-004 { background-image: url(img/works/app-icon-004.png); }
.appIcon-003 { background-image: url(img/works/app-icon-003.png); }
.appIcon-002 { background-image: url(img/works/app-icon-002.png); }
.appIcon-001 { background-image: url(img/works/app-icon-001.png); }

/* Graphic Design */
.gd-001 { background-image: url(img/works/gd-001.jpg); }


/* CODING -------------------------------------------------- */




/* MESSAGE -------------------------------------------------- */

#message {
    background-color: rgba(255,255,255,0.6);
    padding: 50px 0px;
    }

#message .section-inner {
    max-width: 880px;
    }

/* CONTACT -------------------------------------------------- */

#contact {
    text-align: center;
    background-color: #fef6f5; /* fdf5f3 */
    }

.email {
    box-sizing: border-box;
    border: 0px solid #333;
    border-radius: 20px;
    background: linear-gradient(45deg, #c876d6 ,#f0a5c5);
    max-width: 600px;
    padding: 30px 20px;
    margin: 40px auto 20px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    }

#contact .note {
    opacity: 0.6;
    font-size: 12px;
    }

/* BLUEPRINT -------------------------------------------------- */

#blueprint {
    text-align: center;
    background-color: #212123;
    background-image: url(img/blueprint-00.jpg),url(img/blueprint-00.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: calc( 100% - 2%) center, 2% center;
    height: 400px;
    font-family: "Orbitron", sans-serif;
    color: #ddd;
    }

#blueprint h3 {
    font-weight: 700;
    color: #ddd;
    -webkit-text-stroke: 0px;
    }

#blueprint:hover h3 { color: #fff; }

#blueprint:hover .copy-big, #blueprint:hover .copy-small { color: #fff;
    text-shadow: 0px 0px 10px #fff;
    }

#blueprint .copy-big {
    font-size: 36px;
    margin-top: 80px;
    letter-spacing: 0.2em;
    font-weight: 600;
    transition: .8s;
    }

#blueprint .copy-small {
    font-size: 20px;
    margin-top: 0px;
    letter-spacing: 0.4em;
    font-weight: 600;
    transition: .8s;
    }

#blueprint .copy-text {
    opacity: 0.3;
    font-family: "Oswald", sans-serif;
    font-weight: 100;
    font-size: 10px;
    margin-top: 0px;
    letter-spacing: 0.1em;
    transition: .8s;
    }


/* PROFILE -------------------------------------------------- */

#profile {
    background-color: #eee8ec;
    padding: 50px 0px 100px!important;
    }

#profile .section-inner {
    max-width: 800px;
    }

#profile h3 { -webkit-text-stroke:; }

.profile-box {
    display: flex;
    }

.profile-img {
    border-radius: 100%;
    border: 4px solid #fff;
    background-image: url(img/profile.jpg);
    background-size: cover;
    background-position: center;
    width: 200px;
    height: 200px;
    }

.profile-box-inner-right {
    flex: 1;
    box-sizing: border-box;
    padding-left: 50px;
    }

#profile .post {
    margin-bottom: 4px;
    font-family: "Oswald", sans-serif;
    font-weight: 100;
    font-size: 13px;
    letter-spacing: 0.08em;
    }

#profile .name {
    margin-bottom: 30px;
    letter-spacing: 0.04em;
    font-size: 1.2em;
    font-weight: 600;
    }


/* INFORMATION -------------------------------------------------- */

#information {
    display: flex;
    padding: 0px 0px 0px 0px!important;
    margin: 0px 0px 0px 0px!important;
    font-size: 13px;
    }

#information .box-left {
    opacity: .7;
    background-image: url(img/photo-cloud.jpg);
    background-size: cover;
    background-position: center bottom;
    width: 50%;
    height: auto;
    }

#information .box-right {
    box-sizing: border-box;
    width: 50%;
    padding: 50px;
    }

#information ul {
    list-style: none;
    padding: 0px;
    font-size: 13px;
    }

#information li {
    display: flex;
    padding: 0;
    margin: 0px 0px 16px;
    }

#information li div:first-child {
    width: 120px;
    color: #aaa;
    }

#information li div:last-child {
    flex: 1;
    }

#information li .phone-note {
    margin-left: 20px;
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.02em;
    }


/* last -------------------------------------------------- */
.pc { display: inline; }
.sp { display: none; }
.none { display: none;}
/* end -------------------------------------------------- */