@charset "utf-8";


.wf-loading {
    opacity: 0;
}


html,
body,
h1,
h2,
h3,
h4,
p,
li,
a,
summary {
    color: #2b262e;
    font-feature-settings: "palt";
    font-family: "dnp-shuei-mincho-pr6", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

img {
    object-fit: cover;
    vertical-align: bottom;
    border: none;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}

.wrapper {
    width: 73.2%;
    margin: 0 auto;
}

@media screen and (max-width:767px) {
    .wrapper {
        width: 84%;
    }

}


/* to-top */
.to-top img {
    width: 50px;
}

.to-top {
    position: fixed;
    z-index: 900;
    bottom: 30px;
    right: 25px;
    transition: 0.3s;
}

.to-top:hover {
    cursor: pointer;
    opacity: 0.7;
}

/* PC左右固定バー*/
.pc-vertical-writing-left,
.pc-vertical-writing-right {
    writing-mode: vertical-rl;
    height: 100vh;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 800;
}

.pc-vertical-writing-left {
    position: fixed;
    top: 0;
    left: 0;
}

.pc-vertical-writing-right {
    position: fixed;
    top: 0;
    right: 0;
}

@media screen and (max-width:767px) {

    .pc-vertical-writing-left,
    .pc-vertical-writing-right {
        display: none;
    }
}







/* header */
.header>.wrapper {
    height: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 200px;
}

.pc-nav ul {
    display: flex;
}

.pc-nav li {
    margin-left: 50px;
}

.pc-nav li:first-child {
    margin-left: 0;
}

.pc-nav a {
    font-family: garamond-premier-pro-caption, serif;
    position: relative;
}

.pc-nav a:hover::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #df3894;
}

.hamburger,
.sp-nav {
    display: none;
}

@media screen and (max-width:900px) {
    .pc-nav {
        display: none;
    }

    .header>.wrapper {
        width: 100%;
        padding: 0 13.4%;
        height: 100px;
        position: relative;
    }

    .logo img {
        width: 135px;
    }

    .hamburger {
        display: block;
        border: solid 1px #1e3263;
        height: 60px;
        width: 60px;
        cursor: pointer;
        z-index: 999;
        position: fixed;
        right: 6vw;
        background: rgb(255, 255, 255, 0.8);
    }


    .hamburger span {
        display: block;
        width: 50%;
        height: 2px;
        margin-left: 25%;
        background: #1e3263;
        transition: all 0.5s;
        position: absolute;
    }

    .hamburger span:nth-child(1) {
        top: 30%;
    }

    .hamburger span:nth-child(2) {
        top: 50%;
    }

    .hamburger span:nth-child(3) {
        top: 70%;
    }

    .open span:nth-child(1) {
        top: 50%;
        transform: rotate(-405deg);
    }

    .open span:nth-child(2) {
        opacity: 0;
    }

    .open span:nth-child(3) {
        top: 50%;
        transform: rotate(405deg);
    }

    .sp-nav {
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 900;
    }

    .sp-nav a img {
        width: 5px;
        margin: 0 20px 12px;
    }

    .sp-nav ul {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .sp-nav li {
        display: block;
        width: 84%;
        margin: 0 auto;
        border-bottom: solid 1px rgb(43, 38, 46, 0.1);
    }

    .sp-nav li:first-child,
    .sp-nav li:last-child {
        border-bottom: none;
    }

    .sp-nav li:last-child {
        margin-top: 40px;
    }

    .menu-background {
        background: rgb(30, 50, 99, 0.1);
    }

    .contact-background {
        background: rgb(224, 56, 149, 0.1);
    }

    .sp-nav a {
        display: block;
        padding: 20px 0;
    }

    .sp-nav li:first-child {
        display: block;
        padding: 20px;
    }
}







/* mv */
.mv-container {
    padding: 0 50px;
    position: relative;
}

.mv-container img {
    width: 100%;
}

.sp-vertical-writing {
    display: none;
}

.scroll {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    color: #2b262e;
    writing-mode: vertical-lr;
    letter-spacing: 0.05em;
}

.scroll::before {
    content: "";
    width: 1px;
    height: 100px;
    background: #2b262e;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width:767px) {
    .mv-container {
        padding: 0;
        display: flex;
    }

    .sp-vertical-writing {
        display: none;
        writing-mode: vertical-rl;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}







/* 共通 */
h2 {
    font-size: 30px;
    text-align: center;
    font-family: garamond-premier-pro-caption, serif;
}

h3 {
    font-size: 24px;
}

@media screen and (max-width:767px) {
    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }
}






/* about */
.about {
    padding: 120px 0;
    text-align: center;
}

.about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 80px 0 53px;
}

.about-container img,
.profile img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
}

.about-text {
    max-width: 452px;
    margin-left: 10%;
    text-align: left;
}

.name p {
    font-size: 24px;
}

.about-text-content {
    margin-top: 40px;
}

.about-text-content p {
    line-height: 1.875;
}

.about .btn a {
    padding: 8px 40px;
    background: #df3894;
    color: #fff;
}

.about .btn a:hover {
    background: #1e3263;
    opacity: 1;
}

.about h2 {
    color: #df3894;
}

@media screen and (max-width:767px) {
    .about {
        padding: 80px 0 40px;
    }

    .about-container {
        flex-direction: column;
        margin: 40px 0;
    }

    .about-container img,
    .profile img {
        width: 84%;
        height: auto;
        border-radius: 0;
    }

    .about-text {
        width: 100%;
        margin-left: 0;
    }

    .about-text {
        text-align: center;
    }

    .name p {
        font-size: 20px;
        margin-top: 40px;
    }

    .about-text-content {
        width: 100%;
        margin: 0 auto;
        text-align: left;
    }

    .about-text-content p {
        font-size: 14px;
        line-height: 1.785;
    }
}





/* skills */
.skills {
    padding: 120px 0 180px;
    background: rgb(30, 50, 99, 0.1);
    position: relative;
}

.skills-box {
    width: 80%;
    height: 460px;
    background: #fff;
    position: absolute;
    top: 300px;
    right: 0;
    z-index: 100;
}

.skills-items {
    margin-top: 36px;
    display: flex;
    justify-content: space-between;
}

.skills-item {
    width: calc(100% / 3);
    margin-right: 5%;
    box-sizing: border-box;
    z-index: 200;
}

.skills-items img {
    width: 100%;
}

.skills-item:last-child {
    margin-right: 0;
}

.cording {
    margin-top: 86px;
}

.tools {
    margin-top: 199px;
}

.skills h3 {
    margin: 20px 0;
    font-family: garamond-premier-pro-caption, serif;
}

.skills-text p {
    line-height: 1.8125;
}

.tools .skills-icon {
    height: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    border: solid 1px;
}

.tools .skills-icon img {
    width: 20%;
    margin-right: 6.6%;
}

.tools .skills-icon img:last-child {
    width: 10%;
    margin-right: 0;
}

.skills h2 {
    color: #1e3263;
}

@media screen and (max-width:767px) {
    .skills {
        padding: 40px 0 170px;
    }

    .skills-box {
        width: 53.8%;
        height: 77.9%;
        top: 256px;
    }

    .skills-items {
        margin-top: 40px;
        flex-direction: column;
    }

    .skills-item {
        margin-right: 0;
        width: 100%;
        /* height: 100%; */
    }

    .skills-item img {
        width: 100%;
    }

    .cording,
    .tools {
        margin-top: 50px;
    }

    .skills-text p {
        font-size: 14px;
        line-height: 1.785;
    }

    .tools .skills-icon {
        width: 100%;
        height: 210px;
        margin: 0;
    }

    .tools .skills-icon img {
        width: 54px;
        margin-right: 6.6%;
    }

    .tools .skills-icon img:nth-of-type(4) {
        width: 30px;
    }
}




/* works */
.works {
    padding: 130px 0 120px;
}

.sub-section-title {
    position: relative;
    margin-bottom: 25px;
}

.sub-section-title::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #727171;
    position: absolute;
    bottom: -25px;
    left: 0;
}

.works-items ul {
    margin-bottom: 120px;
    display: flex;
    flex-wrap: wrap;
}

.works-items li {
    width: 50%;
    padding: 0 10px;
    margin-top: 35px;
}

.works-items img {
    width: 100%;
}

.overly {
    position: relative;
    cursor: pointer;
}

.overly-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3S;
    background: rgb(30, 50, 99, 0.7);
    backdrop-filter: blur(4px);
    opacity: 0;
}

.overly-text:hover {
    opacity: 1;
}



.works-item-text {
    margin-left: 13%;
}

.works-item-text p:first-child {
    color: #727171;
    font-size: 14px;
    margin-top: 35px;
}

.works-item-text p:nth-child(2) {
    margin: 20px 0;
}

.works h2 {
    color: #1e3263;
}




/* contact */
.contact {
    background: rgb(30, 50, 99, 0.1);
    padding: 120px 0;
}

.contact .wrapper {
    background: #fff;
    padding: 80px 0;
}

.contact-text {
    margin: 60px 0;
    text-align: center;
}

.contact-text p {
    line-height: 1.812;
}

.form {
    width: 70%;
    margin: 0 auto;
}

.form-inner {
    display: flex;
    align-items: center;
}

label span {
    font-size: 12px;
    padding: 3px 10px;
    margin-left: 10px;
    background: red;
    color: #fff;
    border-radius: 9999px;
}

label {
    display: block;
}

.form-box {
    border: solid 1px #1e3263;
    background: rgb(30, 50, 99, 0.1);
    padding: 0 5px;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
}

.textarea {
    border: solid 1px #1e3263;
    background: rgb(30, 50, 99, 0.1);
    padding: 0 5px;
    width: 100%;
    height: 150px;
}

.submit-btn {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.submit-btn input {
    padding: 0 64px;
    background: #1e3263;
    color: #fff;
}

.submit-btn input:hover {
    background: #df3894;
}

@media screen and (max-width:767px) {
    .contact {
        padding: 57px 0;
    }

    .contact .wrapper {
        padding: 57px 0;
    }

    .contact-text {
        margin: 40px 0;
        text-align: left;
        padding: 0 20px;
    }

    .contact-text br {
        display: none;
    }

}




/* footer */
.footer {
    background: #1e3263;
}

.footer p {
    color: #fff;
    font-size: 12px;
    padding: 44px 0;
    text-align: center;
}

@media screen and (max-width:767px) {
    .footer p {
        font-size: 12px;
        padding: 24px 0;
    }
}



/* works-html */
.works-html {
    padding: 80px 0;
    text-align: center;
}

.works-html h2 {
    margin-bottom: 90px;
}

.works-html img {
    max-width: 100%;
}

.works-html-container {
    max-width: 700px;
    margin: 0 auto;
}

.works-html-title {
    margin: 80px 0 40px;
}

.works-html-title h4 {
    font-size: 24px;
}

.works-html-subtitle {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
    position: relative;
}

.works-html-subtitle::before {
    content: "";
    width: 100%;
    height: 3px;
    background: #1e3263;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.works-html-container ul,
.warks-html-text {
    text-align: left;
}

.works-html-container ul {
    margin-bottom: 40px;
}

.works-html-container li {
    margin-bottom: 20px;
}

.works-html-container li:last-child {
    margin-bottom: 0;
}

.warks-html-text {
    line-height: 1.812;
    margin-bottom: 80px;
}

.works-html .btn a {
    padding: 8px 55px;
    background: #1e3263;
    color: #fff;
    transform: 0.3s;
}

.works-html .btn a:hover {
    background: #df3894;
}

.works-html-img p:nth-child(2) {
    margin-top: 80px;
}

.accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion img {
    margin-top: 40px;
}

.hair-salon img {
    width: 60%;
}

details {
    margin-bottom: 80px;
}

details summary {
    cursor: pointer;
    border: solid 1px;
    width: 375px;
    padding: 12px 0;
    box-shadow: 5px 5px 0 0 #231815;
    margin: 0 auto;
    transition: 0.3s;
}

details summary:hover {
    position: relative;
    top: 1px;
    left: 1px;
    box-shadow: none;
}

@media screen and (max-width:767px) {
    .works-html-title h4 {
        font-size: 20px;
    }

    .works-html-subtitle {
        font-size: 18px;
    }

    details summary {
        width: 275px;
        padding: 0;
    }

}

/* profile.html */
.profile .wrapper {
    display: flex;
    align-items: center;
    padding: 112px 0 120px;
}

.profile>.wrapper>p {
    max-width: 350px;
}

.profile-inner {
    margin-left: 10%;
}

.name-roman p {
    color: #df3894;
    margin: 20px 0 40px;
}

.profile-text {
    font-size: 20px;
    line-height: 2;
}

@media screen and (max-width:767px) {
    .profile .wrapper {
        display: block;
        text-align: center;
        padding: 40px 0 80px;
    }

    .name-roman p {
        margin: 10px 0 20px;
    }

    .profile-text {
        font-size: 16px;
        line-height: 1.812;
        text-align: left;
    }

    .profile>.wrapper>p {
        max-width: 100%;
    }

    .profile-inner {
        margin-left: 0;
    }
}


/* background */
.background {
    padding-top: 100px;
    height: 100vh;
    text-align: center;
    /* overflow: scroll; */
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    background-image: url("..//img/background-100.jpg");
    position: relative;
}

.background::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari 対応 */
}

.background h2 {
    color: #fff;
    margin-bottom: 117px;
}

.background ul {
    display: flex;
    padding-left: 13.39%;
}

.background li {
    min-width: 500px;
    padding-right: 112px;
    text-align: left;
    color: #fff;
}

.background li p {
    color: #fff;
}

.background__dot {
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    margin-bottom: 44px;
    background-color: #fff;
    border-radius: 50%;
}

.background__dot::after {
    position: absolute;
    content: "";
    top: 5px;
    left: 0;
    /* z-index: -1; */
    width: 550px;
    height: 1px;
    background-color: #fff;
}

.arrow span {
    display: inline-block;
    /* vertical-align: middle; */
    /* margin-left: 10px; */
    width: 250px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 150px;
    left: 13.39%;
}

.arrow span:before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: -3px;
}

.arrow span:before {
    top: -7px;
}

.arrow span:before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.background-area{
    overflow: hidden;
}

.scroll-area{
    overflow: visible;
}

.scroll-area .background{
    overflow: scroll;
}

main{
    overflow: hidden;
}


/* strength */
.strength {
    padding: 120px 0 120px;
}

.strength h2 {
    display: inline-block;
    background: rgb(30, 50, 99);
    background: linear-gradient(45deg, rgba(30, 50, 99, 1) 0%, rgba(224, 56, 149, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.strength .section-title {
    margin-bottom: 80px;
    text-align: center;
}


.circles {
    width: 100%;
    height: 400px;
    position: relative;
}

svg {
    width: 29.28vw;
}

.circle1 {
    position: absolute;
    top: 0;
    left: 12%;
}

.circle2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}


.circle3 {
    position: absolute;
    top: 0;
    left: 58%;
}

.circle-title p {
    font-size: 1.756vw;
}

.circle-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/***************************************************
 * Generated by SVG Artista on 4/20/2024, 4:52:06 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1195.8052083641214px;
        stroke-dasharray: 1195.8052083641214px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1195.8052083641214px;
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1195.8052083641214px;
        stroke-dasharray: 1195.8052083641214px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1195.8052083641214px;
    }
}

.svg-elem-1-1 {
    -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s both;
}






/***************************************************
 * Generated by SVG Artista on 4/20/2024, 4:52:58 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1195.8052083641214px;
        stroke-dasharray: 1195.8052083641214px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1195.8052083641214px;
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1195.8052083641214px;
        stroke-dasharray: 1195.8052083641214px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1195.8052083641214px;
    }
}

.svg-elem-2-1 {
    -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}






/***************************************************
 * Generated by SVG Artista on 4/20/2024, 4:53:45 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1195.8052083641214px;
        stroke-dasharray: 1195.8052083641214px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1195.8052083641214px;
    }
}

@keyframes animate-svg-stroke-1 {
    0% {
        stroke-dashoffset: 1195.8052083641214px;
        stroke-dasharray: 1195.8052083641214px;
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 1195.8052083641214px;
    }
}

.svg-elem-3-1 {
    -webkit-animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
    animation: animate-svg-stroke-1 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}


.circle-text {
    display: flex;
    margin-top: 80px;
}

.circle-text1,
.circle-text2,
.circle-text3 {
    width: calc(100% / 3);
    margin-right: 50px;
}

.circle-text1 p:first-child,
.circle-text2 p:first-child,
.circle-text3 p:first-child {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
}

.circle-text3 {
    margin-right: 0;
}


@media screen and (max-width:767px) {
    .strength {
        padding: 80px 0 80px;
    }

    .strength .section-title {
        margin-bottom: 45px;
    }

    .circles {
        aspect-ratio: 1 / 1;
        max-width: 767px;
        height: auto;
    }

    .circle1 {
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .circle2 {
        top: 60%;
        left: 30%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }


    .circle3 {
        top: 60%;
        left: 70%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    svg {
        width: 50vw;
    }

    .circle-text {
        display: block;
        margin-top: 0px;
    }

    .circle-text1,
    .circle-text2,
    .circle-text3 {
        width: 100%;
        margin-right: 0px;
    }

    .circle-text1 p:first-child,
    .circle-text2 p:first-child,
    .circle-text3 p:first-child {
        text-align: left;
        font-size: 16px;
        margin-bottom: 20px;
        border-top: solid 1px #2b262e;
        padding-top: 15px;
        padding-left: 30px;
        position: relative;
    }

    .circle-text1 p:first-child::before,
    .circle-text2 p:first-child::before,
    .circle-text3 p:first-child::before {
        position: absolute;
        content: attr(data-en);
        top: 1;
        left: 0;
        font-size: 16px;
    }

    .circle-text1 p:nth-child(2),
    .circle-text2 p:nth-child(2),
    .circle-text3 p:nth-child(2) {
        font-size: 14px;
    }

    .circle-text1 p:nth-child(2),
    .circle-text2 p:nth-child(2) {
        margin-bottom: 64px;
    }

}

/* thanks.html */
.thanks {
    background: rgb(30, 50, 99, 0.1);
    padding: 80px 0;
}

.thanks .wrapper {
    background: #fff;
    text-align: center;
    padding: 80px 40px;
}

.thanks-text p:first-child {
    font-size: 40px;
    margin: 60px 0 30px;
}

.thanks-text p:last-child {
    font-size: 16px;
    margin-bottom: 60px;
}

.thanks .btn a {
    padding: 8px 40px;
    background: #1e3263;
    color: #fff;
}

.thanks .btn a:hover {
    background: #df3894;
    opacity: 1;
}