@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: #2b2b2b;
    overflow-x: hidden;
}

html,
body {
    overflow-x: hidden;
}

.custom-cursor {
    position: fixed;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.custom-cursor.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/*====== header ======*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px 0 0;
}

.logo img {
    width: 120px;
    margin: 10px;
}

.nav-list {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: -0.03em;
    gap: 30px;
    margin: 0 0 40px 0;
}

.nav-item a {
    position: relative;
    text-decoration: none;
    color: #2b2b2b;
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    z-index: 10;
}

/* ====== hamburger ======*/

.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
}

.hamburger span {
    display: block;
    width: 35px;
    height: 2px;
    background: #222;
    border-radius: 3px;
}

.header-hamburger {
    text-align: center;
}

.header-hamburger li {
    margin: 40px 0;
}

.header-hamburger a {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    text-decoration: none;
    color: #222;
}

@media (max-width: 1080px) {

    .logo img {
        width: 100px;
    }

    .nav-list {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .nav-sp {
        display: block;
    }

    .hamburger {
        position: absolute;
        display: flex;
        top: 40%;
        right: 4rem;
    }

}

/*====== section hero ======*/

.hero {
    position: relative;
    background-image: url(../images/アセット\ 11@2x-100.jpg);
    background-size: cover;
    background-position: center top;
    min-height: 100svh;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    content: "";
    inset: 0;
    background: #bdb8b3;
    opacity: 0.35;
    z-index: 0;
}

.hero-container {
    position: relative;
    display: grid;
    place-items: center;
    height: 90vh;
    color: #fff;
    z-index: 3;
}

.hero-box {
    position: relative;
    display: inline-block;
}

.hero-box h1 {
    position: relative;
    display: inline-block;
    font-family: "Cormorant", serif;
    font-weight: 600;
    font-size: clamp(90px, 10vw, 210px);
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 230px 0 0 0;
    z-index: 4;
}

.hero-box h1::after {
    display: block;
    content: "";
    width: 170px;
    height: 2px;
    background-color: #fff;
    margin: 0 auto;
}

.mana {
    position: absolute;
    display: inline-block;
    font-family: "WindSong", cursive;
    font-weight: 400;
    font-size: clamp(60px, 10vw, 130px);
    white-space: nowrap;
    color: #2b2b2b;
    transform: translateX(-50%) rotate(-10deg);
    top: -40px;
    left: 50%;
    cursor: pointer;
}

.mana-slide {
    display: inline-block;
    opacity: 0;
    transform: translateX(100px);
}

.mana-slide.show {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 1.6s ease,
        transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mana-particle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    font-size: 3.5rem;
    color: rgba(0, 0, 0, 0.5);
    font-family: inherit;
    animation: fallDown 1.2s cubic-bezier(0.4, 0.0, 1, 1) forwards;
}

@keyframes fallDown {

    0% {
        transform: translateX(var(--x)) rotate(0deg);
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateX(calc(var(--x) * 1.4)) translateY(160px) rotate(35deg);
        opacity: 0;
    }
}

.star {
    position: absolute;
    width: 40px;
}

.star.left {
    top: 75%;
    left: -90px;
}

.star.right {
    top: 75%;
    right: -90px;
}

.circle-wrap {
    position: absolute;
    width: 380px;
    top: 50%;
    left: 20%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.outer-svg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotateCW 30s linear infinite;
    transform-origin: center center;
}

.inner-svg {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    transform: translate(-50%, -50%);
    animation: rotateCCW 20s linear infinite;
    transform-origin: center center;
}

.outer-text,
.inner-text {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 3px;
    fill: rgba(255, 255, 255, 0.4);
}

@keyframes rotateCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}

@keyframes rotateCCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.hero-text {
    margin: 30px 0 0 0;
}

.hero-subtext {
    text-align: center;
    letter-spacing: -0.1em;
    line-height: 2;

}

.js-type span {
    display: inline;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-type span.show {
    opacity: 1;
    transform: translateY(0);
}


.filter {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #bdb8b3;
    opacity: 0.35;
    top: 0;
    left: 0;
}

@media (max-width: 1080px) {

    .hero {
        height: 75vh;
    }

    .hero-container {
        height: 70vh;
    }

    .hero-box h1::after {
        width: 90px
    }

    .star {
        width: 35px;
    }

    .star.left {
        left: -50px;
    }

    .star.right {
        right: -50px;
    }

    .filter {
        height: 75%;
    }

}

@media (max-width: 768px) {

    .hero {
        height: 90vh;
    }

    .star {
        width: 30px;
    }

    .star.left {
        top: 80%;
        left: -40px;
    }

    .star.right {
        top: 82%;
        right: -25px;
    }

    .mana {
        transform: translateX(-90%) rotate(-10deg);
        top: -20px;
    }

    .hero-text {
        font-size: 0.7rem;
    }

    .hero-subtext {
        font-size: 0.6rem;
        margin: 0 20px 0 0;
    }

    .filter {
        height: 90%;
    }

}

/*====== section concept ======*/

#concept {
    padding: 100px 80px;
}

.concept-inner {
    background: #dedcd8;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
}

.concept-title {
    position: relative;
    display: inline-block;
    margin: 0 0 40px 0;
}

.title {
    color: #2b2b2b;
    font-family: "Raleway", sans-serif;
    font-size: clamp(50px, 10vw, 92px);
    font-weight: 800;
    line-height: 1;
}

.pop-in {
    opacity: 0;
    transform: translateY(6px) scale(0.9);
}

.pop-in.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 2.5s ease,
        transform 2.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.concept-title .star.right {
    position: absolute;
    top: 35%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

@keyframes twist {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-60deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(60deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.script {
    position: absolute;
    font-family: "WindSong", cursive;
    letter-spacing: 0.05em;
    white-space: nowrap;
    color: rgba(222, 169, 54, 0.6);
    font-size: clamp(50px, 10vh, 70px);
    font-weight: 100;
    transform: rotate(-10deg);
    top: 20%;
    left: 15%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: rotate(-10deg) translateX(0);
        opacity: 0.75;
    }

    50% {
        transform: rotate(-10deg) translateX(8px);
        opacity: 1;
    }

    100% {
        transform: rotate(-10deg) translateX(0);
        opacity: 0.75;
    }
}

.subtitle {
    font-size: 10px;
    font-weight: bold;
    text-align: right;
    margin: -10px 17px 0 0;
}

.concept-text {
    text-align: center;
    margin: 0 0 20px 0;
}

.concept-text .concept-subtext {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 30px 0;
}

.pop-all {
    display: inline-block;
    opacity: 1;
}

.pop-all.show {
    animation: popAll 2s ease forwards;
}

@keyframes popAll {

    0% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1.05);
    }
}

.concept-text p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: -0.05em;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.title-line {
    display: block;
    width: 0;
    height: 2px;
    background: #2b2b2b;
    transition: width 0.8s ease;
    margin: 8px 0 0 0;
}

.title-line.show {
    width: 270px;
}

.concept-img {
    display: flex;
    justify-content: space-between;
}

.concept-img img {
    width: 100%;
    max-width: 380px;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.8s ease,
        box-shadow 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.concept-img img:hover {
    transform: scale(1.10) rotate(-3deg);
    filter: brightness(1.15);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1080px) {

    #concept {
        text-align: center;
    }

    .concept-title {
        margin: 50px 0 0 0;
    }

    .concept-text {
        width: 70%;
        margin: 70px auto;
    }

    .concept-text .concept-subtext {
        margin: 70px 0;
    }

    .concept-img img {
        width: 48%;
    }

}

@media (max-width: 768px) {

    #concept {
        padding: 30px;
    }

    .concept-inner {
        padding: 20px 20px 50px 20px;
    }

    .concept-title {
        margin: 30px 0 0 0;
    }

    .concept-title .title-line.show {
        width: 170px;
    }

    .concept-title .star.right {
        top: 25%;
        right: -25px;
        width: 20px;
    }

    .concept-title .subtitle {
        font-size: 0.5rem;
    }

    .script {
        font-size: 3.5rem;
    }

    .concept-text {
        width: 90%;
        margin: 40px auto;
    }

    .concept-text .concept-subtext {
        font-size: 0.7rem;
        margin: 40px 0;
    }

    .concept-text p {
        font-size: 0.7rem;
    }

}

/*====== works section ======*/

.works {
    background: #dedcd8;
}

.works-container {
    display: flex;
}

.works-left img {
    width: 100%;
    max-width: 430px;
    height: auto;
}

.works-btn {
    display: grid;
    width: 130px;
    margin: 30% auto;
    gap: 50px;
}

.works-btn a {
    display: inline-block;
    text-align: center;
    font-family: "Raleway", sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: #2b2b2b;
    background: #fff;
    border: 1px solid #c2c2c2;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    filter: drop-shadow(5px 5px 5px #525252);
    cursor: pointer;
}

.works-btn a:hover {
    background: #f0f0f0;
    transform: scale(1.05);
    cursor: none;
}

.works-title {
    position: relative;
    display: inline-block;
    margin: 100px;
}

.works-title .title {
    font-size: clamp(50px, 10vw, 92px);
    line-height: 1.2;
}

.works-title .title-line.show {
    width: 100px;
}

.works-title .star.right {
    position: absolute;
    top: 35%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.works-title .script {
    font-size: clamp(50px, 10vw, 90px);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 0 130px;
    cursor: pointer;
}

.works-item {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.works-item img {
    display: block;
    width: 100%;
    height: auto;
}

.works-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(#2b2b2b, #2b2b2b) top left / 0% 3px,
        linear-gradient(#2b2b2b, #2b2b2b) top right / 3px 0%,
        linear-gradient(#2b2b2b, #2b2b2b) bottom right / 0% 3px,
        linear-gradient(#2b2b2b, #2b2b2b) bottom left / 3px 0%;
    background-repeat: no-repeat;
    transition: background-size 0.6s ease;
    pointer-events: none;
}

.works-item:hover::after {
    background-size:
        100% 3px,
        3px 100%,
        100% 3px,
        3px 100%;
}

.works-item.is-show {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 920px) {

    .works-container {
        position: relative;
        display: grid;
    }

    .works-left {
        display: flex;
        margin: 20px 0 0 0;
    }

    .works-left img {
        width: 40%;
    }

    .works-btn {
        width: 100px;
        height: 30px;
        margin: 40% 0 0 160px;
        gap: 50px;
    }

    .works-btn a {
        font-size: 0.8rem;
    }

    .works-right {
        width: 90%;
        margin: 50px auto;
    }

    .works-title {
        position: absolute;
        margin: 0;
        top: 90px;
        left: 45%;
    }

    .works-title .star.right {
        top: 30%;
        right: -10%;
        width: 20px;
    }

    .works-title .script {
        top: 10%;
    }

    .works-title .subtitle {
        font-size: 0.4rem;
        margin: -5px 0 0 65px;
    }

    .works-grid {
        gap: 10px;
        margin: 20px auto;
    }

}

@media (max-width: 768px) {

    .works-btn {
        margin: 35% 0 0 70px;
        gap: 40px;
    }

    .works-btn a {
        font-size: 0.7rem;
    }

    .works-title {
        top: 40px;
        left: 43%;
    }

    .works-title .star.right {
        top: 25%;
        right: -4%;
    }

    .works-title .title-line.show {
        width: 60px;
    }

    .works-title .subtitle {
        font-size: 0.4rem;
        margin: -7px 0 0 77px;
    }

}

/*====== service section ======*/

#service {
    background: #dedcd8;
    padding: 200px 0 100px 0;
}

.service-container {
    display: flex;
}

.service-left img {
    width: 100%;
    max-width: 660px;
    height: auto;
    border: 80px solid #2b2b2b;
    padding: 10px;
    background-color: #2b2b2b;
    box-sizing: border-box;
}

.service-title {
    position: relative;
    display: inline-block;
    margin: 0 0 0 40px;
}

.service-title .title {
    line-height: 1.4;
}

.service-title.title-line.show {
    width: 210px;
}

.service-title .script {
    font-size: clamp(50px, 10vw, 80px);
    left: 9%;
}

.service-title .star.right {
    position: absolute;
    top: 35%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.service-list {
    width: 90%;
    margin: 150px 0 0 60px;
}

.service-list th {
    position: relative;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 0 10px 0;
}

.service-list th::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.4px;
    background-color: #808080;
    transform: scale(0);
    transform-origin: left;
    transition: transform 1.4s cubic-bezier(0.2, 0, 0.1, 1);
    opacity: 0;
}

.service-list.is-show th::after {
    transform: scale(1);
    opacity: 1;
}

.service-list td {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: -0.06em;
    padding: 10px 0 30px 160px;
    white-space: nowrap;
}

@media (max-width: 1080px) {

    .service-container {
        flex-direction: row-reverse;
        align-items: flex-start;
    }

    .service-left {
        flex: 0 0 35%;
    }

    .service-right {
        flex: 1;
        padding: 0 0 0 50px;
    }

    .service-left img {
        display: block;
        width: 100%;
        height: auto;
        border: 20px solid #2b2b2b;
        box-sizing: border-box;
    }

    .service-title {
        margin: 0 40px 0 0;
    }

    .service-title .title-line.show {
        width: 190px;
    }

    .service-list {
        width: 100%;
        margin: 150px 0 0 0;
    }

    .service-list td {
        padding: 10px 0 50px 40px;
        white-space: normal;
    }

}

@media (max-width: 768px) {

    #service {
        padding: 60px 0 50px 0;
    }

    .service-left {
        flex: 0 0 40%;
    }

    .service-right {
        flex: 1;
        padding: 0;
    }

    .service-left img {
        display: block;
        width: 100%;
        max-width: 200px;
        height: auto;
        border: 10px solid #2b2b2b;
        box-sizing: border-box;
    }

    .service-title {
        margin: 0;
    }

    .service-title .title-line.show {
        width: 110px;
        margin: 0 5px;
    }

    .service-title .star.right {
        position: absolute;
        top: 30%;
        right: -23px;
        width: 20px;
    }

    .service-title .subtitle {
        font-size: 0.5rem;
        margin: -8px 0 0 5px;
    }

    .service-list {
        width: 140%;
        margin: 190px 0 0 30px;
    }

    .service-list th {
        font-size: 0.65rem;
    }

    .service-list td {
        font-size: 0.5rem;
        padding: 10px 0 50px 40px;
        white-space: normal;
    }

}

/*====== price section ======*/

#price {
    text-align: center;
    background-image: url(../images/アセット\ 28@2x-100.jpg);
    background-position: center;
}

.price-title {
    position: relative;
    display: inline-block;
    margin: 90px 0;
}

.price-title .title {
    color: #fff;
    line-height: 1.4;
}

.price-title .title-line.show {
    background: #fff;
    width: 180px;
}

.price-title .star.right {
    position: absolute;
    top: 35%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.price-title .subtitle {
    color: #fff;
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 90px 0;
}

.card {
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 100%;
    max-width: 300px;
    padding: 40px;
    text-align: left;
}

.card.is-show {
    opacity: 1;
    transform: translateX(0);
}

.card-title {
    font-size: 0.9rem;
    font-weight: 600;
    border-top: 1px solid #999;
    margin: 20px 0 0 0;
    padding: 13px 0 13px 5px;
}

.card-description {
    font-size: 0.8rem;
    font-weight: 600;
    border-top: 1px solid #999;
    padding: 13px 0 0 0;
}

.card-price {
    font-size: 0.8rem;
    font-weight: 600;
    border-top: 1px solid #999;
    margin: 20px 0 0 0;
    padding: 20px 0 30px 5px;
}

.price-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {

    .price-title {
        margin: 70px 0;
    }

    .price-title .title-line.show {
        width: 100px;
    }

    .price-title .star.right {
        position: absolute;
        top: 25%;
        right: -33px;
        width: 20px;
    }

    .price-title .subtitle {
        font-size: 0.5rem;
        margin: -8px 0 0 0;
    }

    .price-cards {
        gap: 32px;
        padding: 0 30px 70px;
    }

    .card {
        max-width: none;
        width: 100%;
        padding: 28px 40px;
        box-sizing: border-box;
    }
}

/*====== process section ======*/

#process {
    position: relative;
    background: #dedcd8;
    padding: 50px 0 100px 70px;
}

.process-container {
    display: flex;
    justify-content: space-between;
}

.process-left {
    width: 50%;
    margin: 0 auto;
}

.process-title {
    position: relative;
    display: inline-block;
    margin: 90px 0;
}

.process-title .title {
    line-height: 1.4;
}

.process-title .title-line.show {
    width: 180px;
}

.process-title .star.right {
    position: absolute;
    top: 35%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.process-title .script {
    font-size: clamp(50px, 10vw, 90px);
}

.process-steps {
    width: 100%;
}

.step {
    position: relative;
    display: flex;
    line-height: 1;
}

.step::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.4px;
    background-color: #808080;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.2, 0, 0.1, 1);
    opacity: 0;
}

.step.is-show::after {
    transform: scaleX(1);
    opacity: 1;
}

.step-number {
    width: 100px;
    font-family: "Raleway", sans-serif;
    color: #fff;
    font-size: clamp(55px, 5vw, 70px);
    font-weight: 300;
    padding: 35px 0 0 0;
}

.step-number span {
    position: absolute;
    display: block;
    font-family: "WindSong", cursive;
    color: rgba(194, 135, 8, 0.6);
    font-size: clamp(13px, 1.5vw, 20px);
    font-weight: 600;
    top: 80px;
    left: -35px;
}

.step-text {
    width: 100%;
    max-width: 600px;
    display: flex;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: -0.08em;
    margin: 50px 0 0 0;
}

.step-description {
    font-size: 0.75rem;
    margin: 0 -250px 0 10px;
}

.step-text p {
    width: 100%;
    line-height: 1.8;
}

.photo-wrap {
    width: 100%;
    max-width: 650px;
    border: 83px solid #2b2b2b;
    background-color: #2b2b2b;
    box-sizing: border-box;
    margin: 90px 0 0 0;
}

.photo-top img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.photo-bottom {
    display: flex;
    margin: 40px 0 0 0;
    gap: 40px;
}

.photo-bottom img {
    display: block;
    width: 47%;
    height: auto;
    object-fit: cover;
}

.photo-bottom .img-left {
    margin: 100px 0 0 0;
}

@media (max-width: 1280px) {

    .step-description {
        margin: 0 -180px 0 10px;
    }

}

@media (max-width: 1180px) {

    .step-description {
        margin: 0 -100px 0 10px;
    }

}

@media (max-width: 1080px) {

    #process {
        padding: 0 0 100px 0;
    }

    .process-container {
        position: relative;
        flex-direction: column;
    }

    .process-left {
        width: 75%;
        text-align: center;
    }

    .process-steps {
        margin: 350px 0 0 0;
    }

    .step-text {
        text-align: left;
        max-width: none;
    }

    .step-description {
        margin: 0 -250px 0 60px;
    }

    .photo-wrap {
        position: absolute;
        display: flex;
        align-items: center;
        max-width: none;
        top: 23%;
        border: 35px solid #2b2b2b;
        margin: 0;
    }

    .photo-top img {
        display: block;
        width: 80%;
        height: auto;
        object-fit: cover;
        margin: 0 auto;
    }

    .photo-bottom {
        display: flex;
        margin: 0 auto;
        gap: 0;
    }

    .photo-bottom img {
        display: block;
        width: 43%;
        object-fit: contain;
    }

    .photo-bottom .img-left {
        margin: 13% 10% 0 0;
    }

}

@media (max-width: 900px) {

    .process-left {
        width: 90%;
        text-align: center;
    }

    .process-steps {
        margin: 300px 0 0 0;
    }

    .step-number span {
        top: 75px;
        left: -10px;
    }

    .step-text {
        display: grid;
    }

    .step-text p {
        margin: 0 0 10px 15px;
    }

    .process-title .title-line.show {
        width: 100px;
    }

    .process-title .star.right {
        top: 30%;
        right: -30px;
        width: 20px;
    }

    .process-title .subtitle {
        font-size: 0.4rem;
        margin: -7px 0 0 0;
    }

    .photo-wrap {
        top: 20%;
    }

}

@media (max-width: 768px) {

    .process-steps {
        margin: 230px 0 0 0;
    }

    .photo-wrap {
        top: 19%;
    }

}


/*====== about section ======*/

#about {
    background: #2b2b2b;
    padding: 0 0 100px 70px;
}

.about-container {
    display: flex;
}

.about-left {
    width: 100%;
}

.about-title {
    position: relative;
    display: inline-block;
    margin: 20px 0 80px 0;
}

.about-title .title {
    font-size: clamp(47px, 10vw, 92px);
    color: #fff;
    line-height: 1.4;
}

.about-title .title-line.show {
    background: #fff;
    width: 120px;

}

.about-title .star.right {
    position: absolute;
    top: 20%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.about-title .subtitle {
    position: absolute;
    color: #fff;
    right: -15%;
}

.about-title .script {
    font-size: clamp(50px, 10vw, 90px);
    left: 10%;
    top: 30%;
    white-space: nowrap;
}

.iam-box {
    position: relative;
    display: grid;
    justify-content: right;
    margin: 20px 50px 0 0;
}

.iam {
    position: absolute;
    font-family: "WindSong", cursive;
    color: rgba(130, 130, 130, 0.5);
    font-size: 2.4rem;
    transform: rotate(-10deg);
    top: -20%;
    right: 140px;
}

.iam-second {
    position: absolute;
    font-family: "WindSong", cursive;
    color: rgba(130, 130, 130, 0.5);
    font-size: 2.4rem;
    transform: rotate(-10deg);
    top: -20%;
    right: 160px;
}

.name {
    background: #fff;
    color: #2b2b2b;
    padding: 25px 90px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.name-second {
    background: #fff;
    color: #2b2b2b;
    padding: 25px 84px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.about-right img {
    width: 100%;
    max-width: 1800px;
}

.about-text {
    color: #fff;
    font-size: 0.75rem;
    line-height: 2;
    margin: 120px 0 0 0;
}

@media (max-width: 1080px) {

    #about {
        padding: 30px 0 60px 0;
        overflow: hidden;
    }

    .about-container {
        position: relative;
        display: grid;
    }

    .about-title {
        margin: 0 0 120px 0;
        z-index: 3;
    }

    .about-title .title {
        margin: 0 0 0 20px;
    }

    .about-title .title-line.show {
        margin: 0 0 0 20px;
    }

    .about-text {
        width: 90%;
        font-size: 0.7rem;
        text-align: center;
        margin: 40px auto 0 auto;
    }

    .iam-box {
        justify-content: center;
        margin: 40px auto 0 auto;
    }

    .iam {
        right: 52%;
    }

    .iam-second {
        right: 55%;
    }

    .about-right img {
        position: absolute;
        width: 70%;
        height: 50%;
        top: -30px;
        right: 0;
        z-index: 1;
    }
}

@media (max-width: 768px) {

    .about-title .title {
        margin: 0 0 0 20px;
    }

    .about-title .title-line.show {
        width: 70px;
    }

    .about-title .star.right {
        top: 18%;
        right: -30px;
        width: 18px;
    }

    .about-title .subtitle {
        font-size: 0.4rem;
        right: -50px;
        margin: -5px 0 0 0;
    }

    .about-right img {
        position: absolute;
        width: 70%;
        height: 30%;
        object-fit: cover;
        top: -30px;
        right: 0;
        z-index: 1;
    }

}

/*====== faq section ======*/

#faq {
    padding: 100px 80px;
}

.faq-inner {
    display: flex;
    background-image: url(../images/アセット\ 27@2x-100.jpg);
    background-position: center;
    width: 100%;
    margin: 0 auto;
    padding: 90px 60px;
}

.faq-left {
    position: relative;
    width: 100%;
    max-width: 180px;
    margin: 0 40px 0 0;
}

.faq-title {
    position: relative;
    display: inline-block;
}

.faq-title .title {
    line-height: 1.4;
}

.faq-title .title-line.show {
    width: 90px;
}

.faq-title .script {
    font-size: clamp(50px, 10vw, 80px);
    left: 30%;
}

.faq-title .star.right {
    position: absolute;
    top: 38%;
    right: -40px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.faq-title .subtitle {
    margin: -10px 0 0 10px;
}

.faq-right {
    margin: 0 0 0 30px;
}

.faq-q {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 800px;
    background: none;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    margin: 0 auto;
    padding: 10px 20px;
}

.faq-q:hover {
    letter-spacing: 0.3px;
    transition: 0.3 ease;
}

.q-icon {
    font-family: "Raleway", sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0 40px 0 0;
}

.faq-item {
    overflow: hidden;
}

.faq-item:nth-child(even) .faq-q {
    background: #fff;
    color: #2b2b2b;
}

.faq-item:nth-child(odd) .faq-q {
    background: #2b2b2b;
    color: #fff;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition:
        max-height 0.55s cubic-bezier(0.19, 0.1, 0.25, 1),
        opacity 0.4s ease,
        transform 0.4s ease
}

.faq-item.active .faq-a {
    max-height: 500px;
    opacity: 1;
    transform: translateX(0);
    padding: 25px 0;
}

.faq-a p {
    font-size: clamp(10px, 2vw, 13px);
    font-weight: 600;
    margin: 0 0 0 90px;
}

@media (max-width: 1080px) {

    .faq-inner {
        display: grid;
        padding: 50px 0 100px 0;
    }

    .faq-left {
        max-width: 1280px;
        text-align: center;
    }

    .faq-title {
        white-space: nowrap;
        margin: 0 0 50px 0;
    }

    .faq-title .title::after {
        width: 55px;
    }

    .faq-item {
        width: 80%;
        margin: 0 auto;
    }

    .faq-a p {
        margin: 0 0 0 10px;
    }

}

@media (max-width: 768px) {

    #faq {
        padding: 30px;
    }

    .faq-inner {
        padding: 20px 0 50px;
    }

    .faq-title {
        white-space: nowrap;
        margin: 0 0 50px 0;
    }

    .faq-title .title-line.show {
        width: 50px;
    }

    .faq-title .star.right {
        top: 30%;
        right: -30px;
        width: 20px;
    }

    .faq-title .subtitle {
        font-size: 0.4rem;
        margin: -5px 0 0 10px;
    }

    .faq-item {
        width: 80%;
        margin: 0 auto;
    }

    .faq-q {
        font-size: 0.5rem;
    }

    .q-icon {
        font-size: 1.5rem;
        margin: 0 20px 0 0;
    }

    .faq-a p {
        margin: 0 0 0 10px;
    }

}

/*====== section contact ======*/

.contact {
    background: #dedcd8;
    padding: 0 0 70px 0;
}

.contact-container {
    position: relative;
    display: flex;
}

.contact-left img {
    width: 100%;
    max-width: 800px;
    object-fit: cover;
}

.contact-right {
    position: absolute;
    background: #fff;
    width: 60%;
    height: 420px;
    top: 21.3%;
    left: 40%;
}

.contact-title {
    position: relative;
    display: inline-block;
}

.contact-title .title {
    line-height: 1.4;
    margin: 30px 50px;
}

.contact-title .title-line {
    position: absolute;
    top: 120px;
    left: 55px;
}

.contact-title .title-line.show {
    width: 230px;
}

.contact-title .script {
    font-size: clamp(46px, 10vw, 80px);
    left: 30%;
}

.contact-title .star.right {
    position: absolute;
    top: 42%;
    right: 15px;
    width: 22px;
    animation: twist 5s ease-in-out infinite;
}

.contact-title .subtitle {
    position: absolute;
    top: 130px;
    right: 70px;
}

.contact-wrap {
    display: flex;
}

.contact-btn {
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    margin: 50px 0 0 50px;
    padding: 30px 55px;
    transition: 0.3s ease;
    ;
}

.contact-btn:hover {
    opacity: 0.85;
    transform: translateY(-3px);
}

.contact-text {
    font-size: 0.75rem;
    font-weight: 500;
    margin: 50px 0 0 50px;
}

@media (max-width: 1080px) {

    .contact-wrap {
        position: relative;
        flex-direction: column;
        width: 500px;
    }

    .contact-btn {
        width: 330px;
        margin: 40px 0 0 100px;
        padding: 30px;
        text-align: center;
        order: 2;
    }

    .contact-text {
        text-align: center;
        order: 1;
        margin: 0 0 0 40px;
    }

}

@media (max-width: 842px) {

    .contact {
        padding: 0 0 30% 0;
    }

    .contact-left img {
        width: 70%;
    }

    .contact-right {
        width: 80%;
        height: 100%;
        top: 35%;
    }

    .contact-title .title {
        margin: 5px 20px;
    }

    .contact-title .title-line {
        top: 100px;
        left: 20px;
    }

    .contact-title .star.right {
        top: 38%;
        right: -2%;
        width: 20px;
    }

    .contact-title .subtitle {
        font-size: 0.4rem;
        top: 110px;
        right: 10%;
    }

    .contact-btn {
        width: 300px;
        font-size: 0.7rem;
        margin: 10px 0 0 120px;
    }

    .contact-text {
        width: 550px;
        margin: 20px 0;
    }

}

@media (max-width: 680px) {

    .contact-right {
        width: 80%;
        top: 40%;
        left: 20%;
    }

    .contact-title .title-line {
        top: 80px;
        left: 20px;
    }

    .contact-title .title-line.show {
        width: 180px;
    }

    .contact-title .subtitle {
        top: 95px;
        right: 10%;
    }

    .contact-btn {
        width: 230px;
        font-size: 0.7rem;
        padding: 20px;
    }

    .contact-text {
        font-size: 0.6rem;
        width: 480px;
    }

}

@media (max-width: 580px) {

    .contact {
        padding: 0 0 40% 0;
    }

    .contact-right {
        height: 240px;
    }

    .contact-title .title-line {
        top: 60px;
        left: 20px;
    }

    .contact-title .title-line.show {
        width: 140px;
    }

    .contact-title .subtitle {
        top: 70px;
        right: 10%;
    }

    .contact-btn {
        width: 200px;
        font-size: 0.6rem;
        padding: 20px;
        margin: 20px 0 0 70px;
    }

    .contact-text {
        font-size: 0.5rem;
        width: 350px;
        margin: 10px 0 0 0;
    }

}

/*====== footer ======*/

.footer {
    background: #2b2b2b;
    padding: 45px 0 0 0;
}

.footer-copy {
    color: #fff;
    text-align: left;
}