@charset "UTF-8";

/* -----------------リセットCSS始まり----------------- */
* {
    margin: 0;
    padding: 0;
}

a {
    display: block;
}

ul {
    list-style-type: none;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: WDXLLubrifontJPN;
    src: url(../font/WDXLLubrifontJPN-Regular.ttf);
}

@font-face {
    font-family: BlackOpsOne;
    src: url(../font/BlackOpsOne-Regular.ttf);
}

/* -----------------リセットCSS終わり----------------- */

/* -----------------header部分始まり----------------- */

.main-visual {
    width: 100%;
    height: 30vh;
    background-color: #202020;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-name {
    font-family: BlackOpsOne, sans-serif;
    font-weight: 500;
    font-size: 10vw;
    color: white;
    position: relative;
    display: inline-block;
}

.main-name::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #202020;
    border-left: 0.5vw solid white;
    animation: typingReveal 1.2s steps(12) forwards, blinkCursor 0.5s step-end infinite;
}

.main-portfolio {
    font-family: BlackOpsOne, sans-serif;
    font-weight: 500;
    font-size: 10vw;
    letter-spacing: 0.2vw;
    color: orangered;
    position: relative;
    display: inline-block;
}

.main-portfolio::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #202020;
    border-left: 0.5vw solid orangered;
    animation: typingReveal 0.9s steps(9) 1.2s forwards, blinkCursor 0.5s step-end infinite;
}


@keyframes typingReveal {
    to {
        width: 0%;
        border-color: transparent;
    }
}


@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}


header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
}

nav {
    width: 100%;
}

nav ul {
    display: flex;
}

nav ul li {
    width: 25%;
    background: linear-gradient(
        90deg,
        transparent 4%, 
        rgba(255, 255, 255, 0.8) 4%, 
        rgba(255, 255, 255, 0.8) 7%,
        transparent 7%, 
        transparent 8%,
        rgba(255, 255, 255, 0.8) 8%, 
        rgba(255, 255, 255, 0.8) 8.5%,
        transparent 8.5%
    );
}

nav ul li a {
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 5vw;
    font-family: WDXLLubrifontJPN;
    color: white;
    font-size: 3.5vw;

    position: relative;
    overflow: hidden; 
    z-index: 1;
}

nav ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: orangered;
    background: linear-gradient(
        135deg,
        transparent 30%, 
        orangered 30%, 
        orangered 32%,
        transparent 32%, 
        transparent 35%,
        orangered 35%, 
        orangered 36%
    );

    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}


nav ul li a:hover::before {
    transform: translateX(0);
}



.dropdown {
    position: relative;
    width: 25%;
    text-align: center;
}

.dropdown a {
    display: block;
    width: 100%;
}

.dropdown .dropdown-menu li a {
    font-size: 2.5vw;
}
 
.dropdown-menu {
    corner-shape: bevel;
    border-radius: 10px;
    width: 100%;
    top: 5.5vw;
    left: 0;
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
}

.dropdown-menu li {
    width: 100%;
}



.dropdown:hover .dropdown-menu {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover::after {
    transform: rotate(180deg);
}

/* -----------------header部分終わり----------------- */



/* -----------------main部分始まり----------------- */

section {
    padding-top: 5vw;
}

.h2-area {
    background-color: #202020;
    height: 10vw;
    position: relative;
    overflow: hidden;
    

    background-image: linear-gradient(
        135deg,
        transparent 0%,
        transparent 82%,
        orangered 82%,
        orangered 85%,
        transparent 85%,
        transparent 87%,
        orangered 87%,
        orangered 88%
    );
    
    background-size: 200% 100%;
    background-position: 0% 0;
}

.h2-area.is-show {
    animation: lineSlide 0.8s ease forwards;
}

@keyframes lineSlide {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

section h2 {
    width: fit-content;
    align-items: center;
    line-height: 10vw;
    margin-left: auto;
    margin-right: auto;
    font-family: WDXLLubrifontJPN;
    color: white;
    font-size: 6vw;
    letter-spacing: 0.3em;
}

h3 {
    font-family: BlackOpsOne;
    color: #202020;
    font-size: 6vw;
    font-weight: 500;
    margin-top: 2vw;
    margin-bottom: 5vw;
    border-left: 1vw solid orangered;
}

h3::before {
    content: "";
    margin-left: 0.1em;
    margin-right: 0.3em;
    border-left: 0.3vw solid orangered;
}

.flex-box {
    display: flex
}

/* -----------------profile部分始まり----------------- */

.profile {
    margin-bottom: 7vw;
}

.profile-h3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.profile-img-area {
    width: 40%;
}

.profile-img-area img {
    display: block;
    width: 70%;
    margin-top: 10vw;
    margin-left: 8vw;
    box-shadow: 0.1vw 0.1vw 0.5vw #202020;
}

.profile-text-area {
    width: 60%;
}

.name-area {
    background-color: orangered;
    width: 100%;
    border-radius: 1.5vw 0 0 0;
    corner-shape: bevel;
}

.profile-name {
    display: flex;
    background-color: #202020;
    border-radius: 3vw 0 0 0;
    corner-shape: bevel;
}



.profile-name span {
    display: block;
    line-height: 5vw;
    color: white;
    font-size: 3.5vw;
    font-weight: 500;
    text-indent: 1.2em;
}

.profile-name small {
    display: block;
    color: rgb(167, 163, 163);
    margin-top: 1.5vw;
    font-size: 2.5vw;
    text-indent: 1.2em;
}

.profile-text-group {
    margin-top: 1.5vw;
    margin-left: 5%;
    width: 85%;
}

.profile-text {
    white-space: pre-wrap;
    margin-bottom: 0.7em;
    font-size: 2vw;
}

/* -----------------profile部分終わり----------------- */

/* -----------------skill部分始まり----------------- */

.skill {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vw;
}

.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30vw;
    gap: 5vw;
}

.skill-card {
    border: 0.3vw solid #202020;
    border-radius: 2vw;
    overflow: hidden;
}

.skill-card h4 {
    line-height: 4vw;
    text-align: center;
    background-color: #202020;
    color: white;
    font-size: 3vw;
    font-family: WDXLLubrifontJPN;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.icon-area {
    height: 13vw;
    overflow: hidden;
}

.skill-card img {
    display: block;
    width: 30%;
    margin-top: 2vw;
    margin-bottom: 1.5vw;
    margin-left: auto;
    margin-right: auto;

}

.ps-icon, .ai-icon {
    display: flex;
    width: 8vw;
    height: 8vw;
    border-radius: 3vw;
    color: white;
    background-color: rgb(75, 75, 75);
    align-items: center;
    justify-content: center;
    letter-spacing: 0.1em;
    font-size: 3vw;
    font-weight: 600;
    margin-top: 2.5vw;
    margin-bottom: 1.5vw;
    margin-left: auto;
    margin-right: auto;
}

.skill-text {
    padding: 2vw 1.5vw;
    font-size: 2vw;
}

/* -----------------skill部分終わり----------------- */


/* -----------------strengths部分始まり----------------- */

.strengths-h3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.strengths-card {
    display: flex;
    width: 95%;
    height: 20vw;
    background-color: #202020;
    border-radius: 0 5vw 0 0;
    corner-shape: bevel;
    border-bottom: 0.5vw solid orangered;
    overflow: hidden;
    margin-bottom: 8vw;
}

.strengths-card2 {
    display: flex;
    margin-left: auto;
    width: 95%;
    height: 20vw;
    background-color: #202020;
    border-radius: 5vw 0 0 0;
    corner-shape: bevel;
    border-bottom: 0.5vw solid orangered;
    overflow: hidden;
    margin-bottom: 8vw;
}

.strengths-no {
    display: block;
    width: 8.5vw;
    line-height: 20vw;
    color: white;
    background-color: orangered;
    font-family: BlackOpsOne;
    font-size: 5vw;
    text-indent: 0.1em;
}

.strengths-no2 {
    display: block;
    width: 8.5vw;
    line-height: 20vw;
    color: white;
    background-color: orangered;
    font-family: BlackOpsOne;
    font-size: 5vw;
    text-indent: 0.1em;
}

.strengths-naname {
    width: 0vw;
}

.strengths-naname2 {
    width: 0vw;
}

.strengths-num-wrap {
    display: flex;
    height: 100%;
}

.strengths-text-area {
    width: 100%;
}

.strengths-title {
    display: block;
    width: 100%;
    line-height: 8vw;
    color: white;
    font-size: 3.5vw;
    font-weight: 500;
    font-family: WDXLLubrifontJPN;
    text-indent: 1em;
    letter-spacing: 0.2em;
}

.strengths-detail {
    width: 97%;
    height: 100%;
    padding: 0.7vw 1.5vw;
    padding-right: 5vw;
    background-color: #dcdcdc;
    white-space: pre-wrap;
    font-size: 1.7vw;
}

.strengths-detail2 {
    width: 97%;
    height: 100%;
    padding: 0.5vw 3vw;
    background-color: #dcdcdc;
    white-space: pre-wrap;
    font-size: 1.7vw;
}

/* -----------------strengths部分終わり----------------- */


#WEB, #GAME, #GRAPHIC, #ILLUSTRATION {
    padding-top: 5vw;
}

#WORKS h3 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* -----------------web部分始まり----------------- */

.grid-box-web {
    display: grid;
    width: 70%;
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-left: auto;
    margin-right: auto;
}

.grid-box-game {
    display: grid;
    width: 70%;
    grid-template-columns: 1fr;
    gap: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.grid-box-web .web-card,
.grid-box-game .game-card {
    background-color: #f4f4f4;
    overflow: hidden;
    border-radius: 2vw 0 0 0;
    corner-shape: bevel;
    box-shadow: 0.1vw 0.3vw 0.5vw #202020;
}

.web-design-top,
.game-design-top {
    height: 2.5vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 70%,
        orangered 70%,
        orangered 76%,
        #202020 76%,
        #202020 80%,
        orangered 80%,
        orangered 83%
    );
}

.grid-box-web .web-card img,
.grid-box-game .game-card img {
    display: block;
    width: 100%;
    height: auto;
}

.web-text-area p,
.game-text-area p {
    display: flex;
    padding: 1.5vw 0;
    border-bottom: 0.1vw solid #dcdcdc;
    align-items: flex-start;
}

.web-text-area p:last-child,
.game-text-area p:last-child {
    border-bottom: none;
}

.web-genre,
.game-genre {
    display: block;
    width: 30%;
    height: 3vw;
    line-height: 2.2vw;
    font-size: 2vw;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 0.5em;
    border-left: 0.4vw orangered solid;
    margin-left: 1vw;
    color: #202020;
}

.web-detail,
.game-detail {
    display: block;
    width: 70%;
    font-size: 2vw;
    line-height: 1.6;
    padding: 0 0.5vw;
}


.web-text-area p:nth-child(2) {
    height: 8vw;
}


.web-text-area p:nth-child(3) {
    height: 15vw;
}

.card-link {
    display: block;
    height: 6vw;
    padding-top: 0.5vw;
    padding-left: 47vw;
    text-decoration: none;
    background-color: #202020;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 10%,
        orangered 10%,
        orangered 16%,
        #202020 16%,
        #202020 88.5%,
        orangered 88.5%,
        orangered 89%,
        #202020 89%,
        #202020 90%,
        orangered 90%,
        orangered 100%
    );
}

.card-link span {
    padding: 0.5vw 1vw;
    border: orangered solid 0.1vw;
    color: orangered;
    font-size: 2vw;
    transition: 0.5s;
}

.card-link span:hover {
    border: #202020 0.1vw;
    color: #202020;
    background-color: rgb(255, 143, 102);
    transition: 0.5s;
}

.web-tools-html,
.game-tools-html {
    background-color: rgb(253, 121, 81);
    padding: 0.1vw 1vw;
    margin-right: 1vw;
    border-radius: 2vw;
    color: white;
    font-size: 2vw;
}

.web-tools-css,
.game-tools-css {
    background-color: rgb(81, 155, 253);
    padding: 0.1vw 1vw;
    margin-right: 1vw;
    border-radius: 2vw;
    color: white;
    font-size: 2vw;
}

.web-tools-js,
.game-tools-js {
    background-color: rgb(255, 226, 62);
    padding: 0.1vw 1vw;
    margin-right: 1vw;
    border-radius: 0.5vw;
    corner-shape: bevel;
    font-size: 2vw;
}

/* -----------------web部分終わり----------------- */

/* -----------------ゲーム部分の始まり----------------- */

.game-explanation {
    width: 75%;
    text-align: center;
    font-size: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
}

.game-Notice {
    display: block;
    font-size: 1.5vw;
}

.game-Notice:nth-of-type(1) {
    margin-top: 2vw;
}

.game-play {
    position: relative;
    display: block;
    text-decoration: none;
    height: 6vw;
    padding-top: 1.5vw;
    background-color: #202020;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 10%,
        orangered 10%,
        orangered 16%,
        #202020 16%,
        #202020 88.5%,
        orangered 88.5%,
        orangered 89%,
        #202020 89%,
        #202020 90%,
        orangered 90%,
        orangered 100%
    );
}

.game-play span {
    display: block;
    width: 20vw;
    margin: 0 auto;
    padding: 0.5vw 1vw;
    border: 0.1vw solid orangered;
    color: orangered;
    font-size: 2vw;
    text-align: center;
    transition: 0.7s ease;
    backface-visibility: hidden;
}

.game-play .play-hover {
    position: absolute;
    top: 1vw;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transform: rotateY(90deg);
    border-color: #202020;
    color: #202020;
    background-color: rgb(255, 143, 102);
}

.game-play:hover .play-default {
    opacity: 0;
    transform: rotateY(-90deg);
}

.game-play:hover .play-hover {
    opacity: 1;
    transform: rotateY(0deg);
}

.game-card img {
    height: 15vw;
}

.game-text-area p:nth-child(2) {
    height: 7.5vw;
    white-space: pre-wrap;
}

.scroll-area {
    font-size: 2vw;
    height: 50vw;
    list-style: 1.5;
    padding-right: 1em;
    white-space: pre-wrap;
}

.scroll-area::-webkit-scrollbar {
    width: 0.8vw;
}

.scroll-area::-webkit-scrollbar-track {
    background-color: #dcdcdc;
    border-radius: 10vw;
}

.scroll-area::-webkit-scrollbar-thumb {
    background-color: orangered;
    border-radius: 1vw;
}

.scroll-area::-webkit-scrollbar-thumb:hover {
    background-color: #202020;
}
/* -----------------GAME部分終わり----------------- */


#GRAPHIC h4 {
    width: 80%;
    text-align: center;
    font-size: 5.5vw;
    border-bottom: 0.3vw solid orangered;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
    font-family: BlackOpsOne, sans-serif;
}

#GRAPHIC details {
    margin-bottom: 4vw;
}

.logo,
.banner,
.poster,
.business,
.collage {
    margin-bottom: 4vw;
}

/* デフォルトの三角アイコンを完全に消す */
.graphic-accordion summary::-webkit-details-marker {
    display: none;
}
.graphic-accordion summary {
    list-style: none;
    cursor: pointer;
    position: relative;
}

/* h4のデザインと矢印を配置するためのフレキシブル設定 */
.graphic-accordion summary h4 {
    width: 100%;
    text-align: center;
    font-size: 3.5vw;
    border-bottom: 0.3vw solid orangered;
    margin-bottom: 1.0vw;
    font-family: BlackOpsOne, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* オリジナルの矢印アイコンを作成 */
.graphic-accordion summary h4::after {
    content: "";
    position: absolute;
    right: 2vw; /* 右端からの距離 */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 0.8vw;
    height: 0.8vw;
    border-right: 0.3vw solid orangered;
    border-bottom: 0.3vw solid orangered;
    transition: transform 0.3s ease; /* 開閉時の回転アニメーション */
}

/* アコーディオンが開いたときに矢印を回転させる */
.graphic-accordion[open] summary h4::after {
    transform: translateY(-50%) rotate(45deg);
}

/* -----------------グラフィック部分始まり----------------- */

/* -----------------グラフィック部分始まり----------------- */

.grid-box-logo {
    display: grid;
    width: 75%;
    grid-template-columns: 1fr 1fr;
    gap: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.graphic-card {
    background-color: #f4f4f4;
    overflow: hidden;
    border-radius: 2vw 0 2vw 0;
    corner-shape: bevel;
    box-shadow: 0.1vw 0.3vw 0.5vw #202020;
    display: flex;
    flex-direction: column;
}

.graphic-design-top {
    height: 1.5vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%, #202020 70%, orangered 70%, orangered 76%,
        #202020 76%, #202020 80%, orangered 80%, orangered 83%
    );
}

.graphic-design-bottom {
    height: 1vw;
    margin-top: auto;
    background-image: linear-gradient(
        135deg,
        #202020 0%, #202020 20%, orangered 20%, orangered 26%,
        #202020 26%, #202020 30%, orangered 30%, orangered 83%
    );
}

.graphic-card-content {
    padding: 1vw;
}

.logo-box {
    display: flex;
}

.graphic-card .logo-box img {
    display: block;
    width: 15vw;
    height: 15vw;
    margin-top: 1vw;
    object-fit: contain;
}

.graphic-text-area {
    width: 90%;
}

.graphic-genre {
    display: block;
    width: 100%;
    font-size: 2vw;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 0.5em;
    border-left: 0.4vw orangered solid;
    margin-bottom: 0.3vw;
    color: #202020;
}

.graphic-detail {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1.7vw;
    line-height: 1.5;
    padding: 0 0 0.5vw 0.5vw;
    border-bottom: 0.1vw solid #dcdcdc;
    margin-bottom: 0.8vw;
    word-break: break-all;
}

.graphic-bottom-area {
    margin-top: 0.5vw;
}

.graphic-detail.tools-area {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.graphic-text-area p:nth-child(2) .graphic-detail {
    height: 10vw;
}


.graphic-bottom-area p:nth-child(1) .graphic-detail{
    height: 17vw;
}


/* -----------------バナー部分始まり----------------- */

.grid-box-banner {
    display: grid;
    width: 75%;
    grid-template-columns: 1fr 1fr;
    gap: 4vw;
    margin-left: auto;
    margin-right: auto;
}

.banner-card {
    background-color: #f4f4f4;
    overflow: hidden;
    border-radius: 2vw 0 2vw 0;
    corner-shape: bevel;
    box-shadow: 0.1vw 0.3vw 0.5vw #202020;
    display: flex;
    flex-direction: column;
}

.banner-card img {
    display: block;
    width: 100%;
    height: auto;
}

.banner-text-area {
    padding: 1vw 1.5vw;
    flex-grow: 1;
}


.banner-text-area p:nth-child(2) .graphic-detail {
    height: 8vw; 
}

.banner-text-area p:nth-child(3) .graphic-detail {
    height: 20vw;
}

.banner-tools-ai {
    display: inline-block;
    margin-bottom: 0.3vw;
    width: fit-content;
    background-color: rgb(39, 17, 11);
    padding: 0.2vw 0.5vw;
    margin-left: 0.2vw;
    margin-right: 0.2vw;
    border-radius: 0.7vw;
    border: solid 0.2vw rgb(255, 172, 76);
    color: rgb(255, 88, 38);
    font-size: 2vw; 
}

.banner-tools-ps {
    display: inline-block;
    margin-bottom: 0.3vw;
    width: fit-content;
    background-color: rgb(16, 34, 58);
    padding: 0.2vw 0.5vw;
    border-radius: 0.7vw;
    border: solid 0.2vw rgb(42, 134, 255);    
    color: rgb(21, 123, 255);
    font-size: 2vw;
}

/* -----------------バナー部分終わり----------------- */

/* -----------------ポスター部分始まり----------------- */

.grid-box-poster {
    display: grid;
    width: 75%;
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-left: auto;
    margin-right: auto;
}

.grid-box-poster .poster-card {
    background-color: #f4f4f4;
    overflow: hidden;
    border-radius: 2vw 0 2vw 0;
    corner-shape: bevel;
    box-shadow: 0.1vw 0.3vw 0.5vw #202020;
}

.poster-design-top {
    height: 2.5vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 70%,
        orangered 70%,
        orangered 76%,
        #202020 76%,
        #202020 80%,
        orangered 80%,
        orangered 83%
    );
}

.poster-design-bottom {
    height: 2vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 20%,
        orangered 20%,
        orangered 26%,
        #202020 26%,
        #202020 30%,
        orangered 30%,
        orangered 83%
    );
}

.poster-box {
    display: flex;
}

.poster-card .poster-box img {
    display: block;
    width: 50%;
}

.poster-genre {
    display: block;
    width: 90%;
    height: 2vw;
    line-height: 1.2vw;
    font-size: 2vw;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 0.5em;
    padding-top: 0.3em;
    border-left: 0.4vw orangered solid;
    margin-left: 1vw;
    margin-bottom: 0.5vw;
    color: #202020;
}

.poster-detail {
    display: block;
    width: 90%;
    height: 4vw;
    font-size: 2vw;
    line-height: 1.6;
    padding: 0.5vw 2vw;
    border-bottom: 0.1vw solid #dcdcdc;
    margin-bottom: 0.2vw;
}


.poster-text-area p:nth-child(2) span:nth-child(2) {
    height: 10vw;
    font-size: 2vw;
}


.poster-text-area p:nth-child(3) span:nth-child(2) {
    height: 20vw;
    font-size: 2vw;
}

.graphic-tools-ai {
    display: inline-block;
    margin-bottom: 0.3vw;
    width: fit-content;
    background-color: rgb(39, 17, 11);
    padding: 0.1vw 0.5vw;
    margin-left: 1vw;
    margin-right: 1vw;
    border-radius: 0.7vw;
    border: solid 0.2vw rgb(255, 172, 76);
    color: rgb(255, 88, 38);
    font-size: 2vw;
}

.graphic-tools-ps {
    display: inline-block;
    margin-bottom: 0.3vw;
    width: fit-content;
    background-color: rgb(16, 34, 58);
    padding: 0.1vw 0.5vw;
    margin-right: 1vw;
    border-radius: 0.7vw;
    border: solid 0.2vw rgb(42, 134, 255);    
    color: rgb(21, 123, 255);
    font-size: 2vw;
}

/* -----------------ポスター部分終わり----------------- */

/* -----------------名刺部分始まり----------------- */

.grid-box-business {
    display: grid;
    width: 75%;
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-left: auto;
    margin-right: auto;
}

.business-card {
    background-color: #f4f4f4;
    overflow: hidden;
    border-radius: 2vw 0 2vw 0;
    corner-shape: bevel;
    box-shadow: 0.1vw 0.3vw 0.5vw #202020;
    display: flex;
    flex-direction: column;
}

.business-design-top {
    height: 2.5vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 70%,
        orangered 70%,
        orangered 76%,
        #202020 76%,
        #202020 80%,
        orangered 80%,
        orangered 83%
    );
}

.business-design-bottom {
    height: 2vw;
    margin-top: auto;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 20%,
        orangered 20%,
        orangered 26%,
        #202020 26%,
        #202020 30%,
        orangered 30%,
        orangered 83%
    );
}

.business-box {
    display: flex;
}

.business-img-area {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1vw;
    padding: 1.5vw 0 1.5vw 1.5vw;
    box-sizing: border-box;
}

.business-img-area img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: 0.1vw 0.1vw 0.3vw rgba(0,0,0,0.2); 
}

.business-text-area {
    width: 50%;
    padding: 1.5vw 0;
}

.business-genre {
    display: block;
    width: 90%;
    height: 2.2vw;
    line-height: 1.2vw;
    font-size: 2vw;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 0.5em;
    border-left: 0.4vw orangered solid;
    margin-left: 1vw;
    margin-bottom: 0.5vw;
    color: #202020;
}

.business-detail {
    display: block;
    width: 90%;
    height: 2vw;
    font-size: 2vw;
    line-height: 1.6;
    padding: 0.5vw 1vw;
    padding-bottom: 1vw;
    border-bottom: 0.1vw solid #dcdcdc;
    margin-bottom: 1vw;
}

.business-text-area p:nth-child(2) span:nth-child(2) {
    height: 7vw;
}

.business-text-area p:nth-child(3) span:nth-child(2) {
    height: 20vw;
    font-size: 2vw;
}

/* -----------------名刺部分終わり----------------- */

/* -----------------collage部分始まり----------------- */


.collage-explanation {
    width: 80%;
    display: block;
    white-space: pre-wrap;
    text-align: center;
    font-size: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6vw;
}

.sample-collage-flex {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    gap: 2vw;
    margin-bottom: 3vw;
}

.sample-collage-flex2 {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    gap: 4vw;
    margin-bottom: 2vw;
}

.sample-collage-before,
.sample-collage-after,
.sample-collage-before2,
.sample-collage-after2 {
    box-shadow: 0.1vw 0.1vw 0.5vw #202020;
}

.sample-collage-before2 {
    margin-left: 3vw;
}


.sample-collage-after2 {
    margin-right: 3vw;
}

.sample-collage-before img,
.sample-collage-after img {
    display: block;
    width: 39vw;
}

.sample-collage-before2 img,
.sample-collage-after2 img {
    display: block;
    width: 35vw;
}

.sample-collage-before p,
.sample-collage-after p,
.sample-collage-before2 p,
.sample-collage-after2 p {
    font-size: 3vw;
    font-family: WDXLLubrifontJPN;
    letter-spacing: 0.2em;
    text-indent: 1em;
}

.sample-collage-before p,
.sample-collage-before2 p {
    background-color: #202020;
    color: #dcdcdc;
}

.sample-collage-after p,
.sample-collage-after2 p {
    background-color: orangered;
    color: #202020;
}


.collage-area {
    margin-top: 10vw;
}

.collage-area h5 {
    width: 80%;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    font-size: 6vw;
    padding-bottom: 1vw;
    border-bottom: 0.1vw solid #bdbdbd;
    margin-bottom: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.collage-grid-box1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

.collage-grid-box2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3vw;
    width: 75%;
    padding-bottom: 3vw;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 0.1vw solid #bdbdbd;
    margin-bottom: 3vw;
}

.collage-grid-box1 img,
.collage-grid-box2 img {
    display: block;
    width: 100%;
    box-shadow: 0.1vw 0.1vw 0.5vw #202020;
}

/* -----------------collage部分終わり----------------- */



.grid-box-illustration1,
.grid-box-illustration2 {
    display: grid;
    width: 75%;
    grid-template-columns: 1fr;
    gap: 1.5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
}

.grid-box-illustration1 .illustration-card,
.grid-box-illustration2 .illustration-card2 {
    background-color: #f4f4f4;
    overflow: hidden;
    border-radius: 2vw 0 2vw 0;
    corner-shape: bevel;
    box-shadow: 0.1vw 0.3vw 0.5vw #202020;
}

.illustration-design-top {
    height: 2.5vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 70%,
        orangered 70%,
        orangered 76%,
        #202020 76%,
        #202020 80%,
        orangered 80%,
        orangered 83%
    );
}

.illustration-design-bottom {
    height: 2vw;
    background-image: linear-gradient(
        135deg,
        #202020 0%,
        #202020 20%,
        orangered 20%,
        orangered 26%,
        #202020 26%,
        #202020 30%,
        orangered 30%,
        orangered 83%
    );
}

.illustration-box {
    display: flex;
}

.illustration-text-area {
    width: 50%;
    padding: 0.1vw;
}

.illustration-card .illustration-box img {
    display: block;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.illustration-card2 img {
    display: block;
    width: 100%;
}

.illustration-genre,
.illustration-genre2 {
    display: block;
    width: 95%;
    height: 2.5vw;
    line-height: 1.8vw;
    font-size: 2vw;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 0.5em;
    border-left: 0.4vw orangered solid;
    margin-top: 0.5vw;
    margin-left: 1vw;
    margin-bottom: 0.5vw;
    color: #202020;
}

.illustration-detail {
    display: block;
    width: 90%;
    height: 2vw;
    font-size: 2vw;
    line-height: 1.4;
    padding: 0 1vw;
    padding-bottom: 2vw;
    border-bottom: 0.1vw solid #dcdcdc;
    margin-bottom: 0.2vw;
}


.illustration-text-area p:nth-child(2) span:nth-child(2) {
    height: 6vw;
    font-size: 2vw;
}


.illustration-text-area p:nth-child(3) span:nth-child(2) {
    height: 20vw;
    font-size: 2vw;
}

.illustration-tools-clip {
    display: block;
    width: fit-content;
    background-color: rgb(209, 209, 209);
    padding: 0.1vw 0.2vw;
    margin-bottom: 0.2vw;
    margin-left: 1vw;
    margin-right: 1vw;
    border-radius: 0.7vw;
    border: solid 0.1vw #494949;
    color: #494949;
    font-size: 2vw;
    line-height: 1.5;
}


.illustration-text-area2 p {
    display: flex;
    padding: 1.5vw 0;
    border-bottom: 0.1vw solid #dcdcdc;
    align-items: flex-start;
}

.illustration-text-area2 p:last-child {
    border-bottom: none;
}

.illustration-genre2 {
    display: block;
    width: 30%;
    height: 2vw;
    line-height: 2vw;
    font-size: 2vw;
    font-weight: 800;
    font-family: BlackOpsOne, sans-serif;
    letter-spacing: 0.1em;
    padding-left: 0.5em;
    border-left: 0.4vw orangered solid;
    margin-left: 1vw;
    color: #202020;
}

.illustration-detail2 {
    width: 90%;
    padding: 0 1vw;
    font-size: 2vw;
}

.illustration-text-area2 p:nth-child(2) {
    height: 8vw;
}


.illustration-text-area2 p:nth-child(3) {
    height: 16vw;
}

.illustration-Notice {
    display: block;
    font-size: 1.7vw;
}



.content-comment {
    text-align: center;
    margin-top: 4vw;
    margin-bottom: 4vw;
}

.content-comment span {
    display: block;
    white-space: pre-wrap;
    font-size: 2vw;
    margin-bottom: 3vw;

}

address {
    margin-bottom: 10vw;
}

address p span {
    display: block;
    font-style: normal;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.mail {
    font-size: 6vw;
    font-family: BlackOpsOne, sans-serif;
    border-left: 1vw solid orangered;
    padding-left: 0.7vw;
}

address a {
    text-decoration: none;
}

.mail-address {
    color: #202020;
    font-size: 6vw;
    font-family: WDXLLubrifontJPN;
    text-align: center;
    transition: 0.5s;
}

.mail-address:hover {
    color: #bdbdbd;
    transition: 0.5s;
}

/* -----------------main部分終わり----------------- */



/* -----------------footer部分始まり----------------- */

footer {
    background-color: #202020;
    padding: 5vw 0;
}

footer p small {
    display: block;
    color: orangered;
    font-family: WDXLLubrifontJPN;
    font-size: 1.5vw;
    text-align: center;
}

/* -----------------footer部分終わり----------------- */

