/* ========== Base & Reset ========== */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --width: 1440;
    --padding: 120;
    --paddingTop: 10px;
    --bg: #F7F4ED;
    --bg-t: #f7f4edcc;
    --main: #C06040;
    --sub: #E7A66D;
    --accent: #5C8E88;
    --text: #4C4C4C;
    --surface: #D0BEAC;
    --highlight: #B87052;
    --fw-L: 300;
    --fw-R: 400;
    --fw-B: 500;
    --fw-SB: 600;
}

@media screen and (max-width: 430px) {
    :root {
        --width: 430;
        --padding: 20;
        --paddingTop: 20px;
    }
}

/* シーズンカラー切り替え */
body[data-theme="spring"] {
    --bg: #FFF8F0;
    --bg-t: #fff8f0cc;
    --main: #F47BA0;
    --sub: #FFD4D1;
    --accent: #7DC8B1;
    --text: #606060;
    --surface: #D8D7CF;
    --highlight: #F7C8A0;
}

body[data-theme="summer"] {
    --bg: #E9F6F5;
    --bg-t: #E9F6F5cc;
    --main: #2FA6D6;
    --sub: #D0E9E5;
    --accent: #FFD884;
    --text: #606060;
    --surface: #F4AE74;
    --highlight: #6FC6B1;
}

body[data-theme="autumn"] {
    --bg: #F7F4ED;
    --bg-t: #F7F4EDcc;
    --main: #C06040;
    --sub: #E7A66D;
    --accent: #5C8E88;
    --text: #4C4C4C;
    --surface: #D0BEAC;
    --highlight: #B87052;
}

body[data-theme="winter"] {
    --bg: #F2F2F5;
    --bg-t: #F2F2F5cc;
    --main: #5C8E88;
    --sub: #A7C5D0;
    --accent: #6670E2;
    --text: #303030;
    --surface: #E4C7B7;
    --highlight: #D0E9E5;
}

body {
    font-family:'Josefin Sans', 'Zen Kaku Gothic New', 'sans-serif';
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/*
html, body {
    overflow-x: hidden;
}*/

body, svg {
    transition: background-color 0.8s ease, color 0.8s ease, fill 0.8s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.sp-only {
    display: none;
}

.hamburger-menu,
.sp-menu,
.btn-trigger {
    display: none;
}

.sp-image {
    display: none;
}

/* title */
.title-area {
    position: relative;
}

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

.title-jp {
    font-size: min(16px, calc(16 / var(--width) * 100vw));
}

.title-en {
    font-size: min(60px, calc(60 / var(--width) * 100vw));
    font-weight: var(--fw-SB);
}

.title-img {
    position: absolute;
}

/* btn */
.btn-area {
    position: relative;
    width: calc(200 / var(--width) * 100vw);
    height: auto;
    text-align: center;
    margin: 0 auto;
    overflow: visible;
    transition: all 0.1s ease;
    cursor: pointer;
}

.btn-img svg {
    width: 100%;
    height: auto;
    aspect-ratio: 226 / 220;
    overflow: visible;
}

.btn_01 {
    position: absolute;
    z-index: -1;
}
.btn-img .btn_02 {
    transform: translate(-10px, -10px);
}

.btn-area:hover .btn_01 {
    transform: translate(-10px, -10px);
    transition: transform 0.3s ease;
}

.btn-area:hover .btn-text {
    transform: translate(calc(-10px - 50%), calc(-10% - 50%));
    transition: transform 0.3s ease;
}

.btn-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-text-en {
    display: flex;
    justify-content: center;
    gap: 4px;
    font-size: calc(20 / var(--width) * 100vw);
}

.btn-text-en svg {
    width: 20px;
    height: 20px;
    rotate: 270deg;
}

.btn-text-ja {
    font-size: calc(16 / var(--width) * 100vw);
}

.btn-area:active {
    transform: translate(10px, 10px);
}

.btn_01 use {
    fill: var(--sub);
    opacity: 0.8;
}

.arrow use {
    fill: var(--text);
}

.fade-in-item {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-item.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ front-page ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ========= Header ========== */
.header,
.top-header {
    position: fixed;
    top: 0;
    z-index: 1000;
    /*
    transition: all 0.3s ease;
    */
}

.header.scrolled {
    height: min(60px, calc(60 / var(--width) * 100vw));
    background: var(--bg-t);
    z-index: 1;
}

.header__wrapper {
    width: 100vw;
    height: min(94px, calc(94 / var(--width) * 100vw));
    max-width: var(--width);
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header.scrolled .header__wrapper {
    height: min(60px, calc(60 / var(--width) * 100vw));
}

.header.scrolled .header__wrapper .header__nav .header__ul {
    gap: calc(20 / var(--width) * 100vw);
}

.header.scrolled .header__wrapper .header__li a {
    font-size: min(16px, calc(16 / var(--width) * 100vw));
    z-index: 1001;
}

.header__nav .header__ul {
    display: flex;
    gap: calc(36 / var(--width) * 100vw);
}

.header__li a {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
}

.header__li:not(:last-child) a:hover {
    border-bottom: solid 1px var(--text);
}

.contact_btn {
    border: solid 1px var(--text);
    border-radius: 24px;
    padding: 8px 16px 4px 16px;
}

.contact_btn:hover {
    background-color: var(--text);
    color: var(--bg);
}

.header__li.selected {
    border-bottom: solid 1px var(--main);
}

/* ========= MV ========== */

/*
.main, .SK-top-mv {
    overflow-x: hidden;
}
*/
.SK-top-mv {
    width: 100vw;
    height: 100vh;
    position: relative;
}

.SK-top-mv__wrapper {
    width: 100%;
    height: 100%;
    max-width: var(--width);
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    position: relative;
    z-index: 1;
}

/* 背景配置 */
/* 左上 */
.SK-top-mv__bg-lt {
    position: absolute;
    top: calc(28 / var(--width) * 100vw);
    left: calc(-100 / var(--width) * 100vw);
    width: 30vw;
    height: auto;
    overflow: visible;
}

.SK-top-mv__bg-lt svg {
    width: 100%;
    height: auto;
    aspect-ratio: 415 / 281;
    overflow: visible;
}

.mv_lt02 {
    position: absolute;
    top: 10px;
    left: 0;
}

.mv_lt01 use {
    fill: var(--accent);
}


/* 右上 */
.SK-top-mv__bg-rt {
    position: absolute;
    top: calc(-80 / var(--width) * 100vw);
    right: 0;
    width: 55vw;
    height: auto;
    overflow: visible;
}

.mv_rt01 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 766 / 589;
    overflow: visible;
}

.mv_rt01 use {
    fill: var(--main);
}

.mv_rt02 {
    position: absolute;
    top: calc(230 / var(--width) * 100vw);
    right: calc(200 / var(--width) * 100vw);
    width: 18vw;
}

.mv_rt02 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 254 / 261;
}

/* 左下 */
.SK-top-mv__bg-lb {
    position: absolute;
    top: calc(400 / var(--width) * 100vw);
    left: 0;
    width: 25vw;
}

.mv_lb01 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 362 / 930;
}

.mv_lb01 use {
    fill: var(--sub);
}

.mv_lb02 {
    position: absolute;
    top: calc(220 / var(--width) * 100vw);
    left: calc(180 / var(--width) * 100vw);
    width: 14vw;
}

.mv_lb02 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 222 / 226;
}

.mv_lb02 use {
    fill: var(--accent);
}

/* 右下 */
.SK-top-mv__bg-rb {
    position: absolute;
    bottom: calc(-220 / var(--width) * 100vw);
    right: 0;
    width: 40vw;
    height: auto;
    overflow: visible;
}

.SK-top-mv__bg-rb svg {
    width: 100%;
    height: auto;
    aspect-ratio: 563 / 493;
    overflow: visible;
}

.mv_rb02 {
    position: absolute;
    top: 10px;
    left: 0;
}

.mv_rb01 use {
    fill: var(--surface);
}

/* MV_bg アニメーション */
@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

.floatY--4s {
    animation: floatY 4s ease-in-out infinite;
    will-change: transform;
}

.floatY--6s {
    animation: floatY 6s ease-in-out infinite;
    will-change: transform;
}

.floatY--8s{
    animation: floatY 8s ease-in-out infinite;
    will-change: transform;
}

/* シーズン切り替え */
.SK-top-mv__season-select {
    position: absolute;
    color: white;
    text-align: center;
    top: min(80px, calc(80 / var(--width) * 100vw));
    right: calc(var(--padding) / var(--width) * 100vw);
}

.SK-top-mv__season-select-text {
    font-size: calc(20 / var(--width) * 100vw);
    font-weight: var(--fw-L);
    margin-bottom: calc(8 / var(--width) * 100vw);
}

.SK-top-mv__season-select-icons {
    display: flex;
    gap: 8px;
}

.season-icon {
    width: calc(40 / var(--width) * 100vw);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.season-icon svg {
    width: 100%;
    height: auto;
    aspect-ratio: 40 / 40;
}

.season-icon svg use {
    fill: white;
}
.season-text {
    display: none;
    font-size: calc(16 / var(--width) * 100vw);
    font-weight: var(--fw-L);
    text-align: center;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.season-icon:hover svg {
    transform: scale(1.1);
}

.season-icon:hover .season-text {
    display: flex;
}

/* mvテキスト */
.SK-top-mv__text-area {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.SK-top-mv__text-area-name {
    font-size: min(88px, calc(88 / var(--width) * 100vw));
    font-weight: var(--fw-SB);
    /*
    transition: all 1.0s ease;
    */
    z-index: 101;
    transform: translate(0, 0);
    will-change: transform, font-size;
}

.SK-top-mv__text-area-name.scrolled,
.SK-top-mv__text-area-name-scrolled {
    font-size: min(36px, calc(36 / var(--width) * 100vw));
    font-weight: var(--fw-B);
    position: fixed;
    top: calc(10 / var(--width) * 100vw);
    left: calc(var(--padding) / var(--width) * 100vw);
    z-index: 101;
}


.SK-top-mv__text-area-title {
    font-size: min(24px, calc(24 / var(--width) * 100vw));
    font-weight: var(--fw-L);
    margin-top: calc(-28 / var(--width) * 100vw);
    margin-bottom: calc(80 / var(--width) * 100vw);
}

.SK-top-mv__text-area-headline {
    font-size: min(28px, calc(28 / var(--width) * 100vw));
}

.SK-top-mv__scroll {
    width: min(32px, calc(32 / var(--width) * 100vw));
    height: min(32px, calc(32 / var(--width) * 100vw));
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.SK-top-mv__scroll svg {
    width: 100%;
    height: 100%;
}

/* ========== WORKS ========== */
.SK-top-works {
    margin-top: 200px;
}
.SK-top-works__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    position: relative;
}

.SK-top-works__title-img {
    top: 70%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.SK-top-works__title {
    margin-bottom: calc(100 / var(--width) * 100vw);
}

.works_01 use {
    fill: var(--accent);
}

.SK-top-works__tag-area {
    display: flex;
    gap: calc(20 / var(--width) * 100vw);
    margin-bottom: calc(40 / var(--width) * 100vw);
    cursor: pointer;
}

.SK-top-works__tag {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    border: solid 1px var(--text);
    border-radius: 24px;
    padding: 4px 12px 2px 12px;
    transition: all 0.3s ease;
}

.SK-top-works__tag.select {
    background-color: var(--text);
    color: var(--bg);
}

.SK-top-works__tag:hover {
    transform: translateY(-2px);
}

.SK-top-works__work-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(60 / var(--width) * 100vw);
}

.SK-top-works__work {
    overflow: hidden;
    transition: transform 0.4s ease;
}

.SK-top-works__work-img {
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.SK-top-works__work-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.SK-top-works__work-title,
.SK-top-works__work-comment {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.SK-top-works__work-title {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    font-weight: var(--fw-SB);
    margin-top: calc(12 / var(--width) * 100vw);
}

.SK-top-works__work-comment {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    opacity: 0.9;
}

.SK-top-works__work-comment-type {
    margin-left: calc(20 / var(--width) * 100vw);
}

.SK-top-works__work-comment-type::before {
    content: "#";
    display: inline-block;
    color: inherit;
}

.SK-top-works__work-comment-kind {
    border: solid 1px var(--text);
    border-radius: 24px;
    padding: 3px 6px 1px 6px;
}

.SK-top-works__btn-area {
    margin-top: calc(80 / var(--width) * 100vw);
}

.SK-top-works__work:hover .SK-top-works__work-img img {
    transform: scale(1.1);
}

.SK-top-works__work:hover .SK-top-works__work-title,
.SK-top-works__work:hover .SK-top-works__work-comment {
    transform: scale(1.05);
    transform: translateX(10px);
    opacity: 1;
}

/* 背景装飾 */
.SK-top-works__bg-r-base {
    position: absolute;
    width: 20vw;
    height: auto;
    top: calc(450 / var(--width) * 100vw);
    right: 0;
    overflow: visible;
    z-index: -2;
} 

.SK-top-works__bg-r-base svg {
    width: 100%;
    height: auto;
    aspect-ratio: 273 / 450;
    overflow: visible;
}

.SK-top-works__bg-r-add {
    position: absolute;
    width: 13vw;
    height: auto;
    top: calc(800 / var(--width) * 100vw);
    right: calc(50 / var(--width) * 100vw);
    overflow: visible;
    z-index: -1;
}

.SK-top-works__bg-r-add svg {
    width: 100%;
    height: auto;
    aspect-ratio: 178 / 182;
    overflow: visible;
}

.SK-top-works__bg-l {
    position: absolute;
    width: 20vw;
    height: auto;
    top: calc(1000 / var(--width) * 100vw);
    left: 0;
    overflow: visible;
    z-index: -1;
}

.SK-top-works__bg-l svg {
    width: 100%;
    height: auto;
    aspect-ratio: 279 / 273;
    overflow: visible;
}

.bg_r01 use {
    fill: var(--accent);
}

.bg_l use {
    fill: var(--surface);
}

/* ========== ABOUT ========== */
.SK-top-about {
    margin-top: calc(200 / var(--width) * 100vw);
}

.SK-top-about__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
}

.SK-top-about__title-img {
    top: 70%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about_01 {
    position: absolute;
    width: 20vw;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -5%);
    overflow: visible;
}

.about_01 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 290 / 35;
    overflow: visible;
}

.about_01 use {
    stroke: var(--main);
}

.about_02 {
    position: absolute;
    width: 12vw;
    top: 50%;
    left: 50%;
    transform: translate(-10%, 10%);
    overflow: visible;
}

.about_02 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 156 / 16;
    overflow: visible;
}

.about_02 use {
    fill: var(--accent);
}

.SK-top-about__content-area {
    display: flex;
    gap: calc(80 / var(--width) * 100vw);
    align-items: center;
    margin-top: calc(80 / var(--width) * 100vw);
    font-size: calc(20 / var(--width) * 100vw);
}

.SK-top-about__img img {
    border-radius: 32% 68% 44% 56% / 53% 32% 68% 47%;
}

.SK-top-about__text-area {
    display: flex;
    flex-direction: column;
    gap: calc(20 / var(--width) * 100vw);
    line-height: 1.8em;
    font-weight: var(--fw-B);
}

.about-title {
    display: inline;
    border-bottom: solid 1px var(--text);
    padding: 0 8px 2px 0;
    line-height: 3rem;
}

.about-content li {
    padding-left: calc(12 / var(--width) * 100vw);
}

.SK-top-about__btn-area {
    margin-right: 0;
}

/* ========= CONTACT ========= */
.SK-top-contact {
    margin-top: calc(200 / var(--width) * 100vw);
}

.SK-top-contact__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    position: relative;
}

.SK-top-contact__title-img svg{
    width: calc(220 / var(--width) * 100vw);
}

.SK-top-contact__title-img {
    top: 50%;
    left: 50%;
    transform: translate(-70%, -50%);
    z-index: -1;
}

.contact_01 use {
    fill: var(--accent);
}

.SK-top-contact__sub-text {
    font-size: calc(18 / var(--width) * 100vw);
    text-align: center;
    margin-top: calc(40 / var(--width) * 100vw);
    margin-bottom: calc(20 / var(--width) * 100vw);
}

.SK-top-contact__form-area {
    width: 80%;
    margin: 0 auto calc(40 / var(--width) * 100vw) auto;
    background-color: white;
    border: solid 1px var(--text);
}

.form-row {
    display: table;
    width: 100%;
    border-bottom: 1px solid var(--text);
}

.form-label,
.form-content {
    display: table-cell;
    border-right: 1px solid var(--text);
    vertical-align: middle;
    padding: 1rem;
}

.form-label {
    width: 30%;
}

.form-row:last-child {
    border-bottom: none;
}

.form-label-text {
    font-size: calc(18 / var(--width) * 100vw);
}

.form-content {
    display: flex;
    align-items: center;
    padding-left: calc(20 / var(--width) * 100vw);
}

.form-spaceholder {
    display: inline-block;
    line-height: 2rem;
    width: calc(300 / var(--width) * 100vw);
    padding: 0 4px;
}

.SK-top-contact__form-content-spaceholder {
    line-height: 1rem;
    width: calc(600 / var(--width) * 100vw);
}

.form-input-space {
    width: 100%;
}

/*WPFormsのスタイル設定*/
.wpforms-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.wpforms-field input,
.wpforms-field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.wpforms-field input:focus,
.wpforms-field textarea:focus {
  border-color: #555;
  outline: none;
}

.wpforms-container .wpforms-form .wpforms-field-label, .wpforms-container .wpforms-form .wpforms-field-sublabel, .wpforms-container .wpforms-form .wpforms-field-description, .wpforms-container .wpforms-form textarea, .wpforms-container .wpforms-form li, .wpforms-container
 {
    hyphens: auto;
    font-family: inherit;
    font-weight: var(--fw-B);
    color: inherit;
    font-size: calc(18 / var(--width) * 100vw);
 }

.wpforms-field-sublabel {
    font-size: calc(12 / var(--width) * 100vw);
}

/* 送信ボタン */
.wpforms-submit {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 12px 32px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wpforms-submit:hover {
  background: #000;
  color: #fff;
}


/* 背景装飾 */
.SK-top-contact__bg-r-base {
    position: absolute;
    width: 20vw;
    height: auto;
    top: calc(140 / var(--width) * 100vw);
    right: 0;
    overflow: visible;
    z-index: -2;
} 

.SK-top-contact__bg-r-base svg {
    width: 100%;
    height: auto;
    aspect-ratio: 273 / 450;
    overflow: visible;
}

.bg_r02 {
    position: absolute;
    top: 10px;
    right: 0;
}

.SK-top-contact__bg-r-add {
    position: absolute;
    width: 13vw;
    height: auto;
    top: calc(500 / var(--width) * 100vw);
    right: calc(50 / var(--width) * 100vw);
    overflow: visible;
    z-index: -1;
}

.SK-top-contact__bg-r-add svg {
    width: 100%;
    height: auto;
    aspect-ratio: 178 / 182;
    overflow: visible;
}

.SK-top-contact__bg-l {
    position: absolute;
    width: 20vw;
    height: auto;
    top: calc(520 / var(--width) * 100vw);
    left: 0;
    overflow: visible;
    z-index: -1;
}

.SK-top-contact__bg-l svg {
    width: 100%;
    height: auto;
    aspect-ratio: 279 / 273;
    overflow: visible;
}

/* ========== Footer ========== */
.footer {
    margin-top: calc(200 / var(--width) * 100vw);
}

.footer__wrapper {
    position: relative;
    height: calc(400 / var(--width) * 100vw);
}

.footer_01 {
    position: absolute;
    bottom: -10px;
    width: 100vw;
    overflow: visible;
    z-index: -1;
}

.footer_01 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 1440 / 457;
    overflow: visible;
}

.footer_01 use {
    fill: var(--main);
}

.footer_02 {
    position: absolute;
    top: calc((50 / var(--width) * 100vw) * -1);
    right: calc(var(--padding) / var(--width) * 100vw);
    overflow: visible;
    width: 17vw;
}

.footer_02 svg {
    width: 100%;
    height: auto;
    aspect-ratio: 254 / 260;
    overflow: visible;
}

.footer__text-area {
    position: absolute;
    bottom: calc(40 / var(--width) * 100vw);
    left: 50%;
    transform: translateX(-50%);
}
.footer__text-area-sns {
    display: flex;
    gap: calc(18 / var(--width) * 100vw);
    justify-content: center;
    margin-bottom: calc(48 / var(--width) * 100vw);
}

.footer__text-area-sns svg {
    width: 52px;
    height: 52px;
}

.footer__text-area-sns svg:hover {
    opacity: 0.8;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.footer__text-area-credit {
    color: white;
    text-align: center;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ archive-work ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.SK-archive-works {
    margin-top: 200px;
}

.SK-archive-works__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    position: relative;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ single-work ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ========== TOP view ========= */
.works-detailed-mv {
    margin-top: min(60px, calc(60 / var(--width) * 100vw));
    position: relative;
}

.works-detailed-mv__imgs-work img,
.works-detailed-mv__imgs-grass img {
    width: 100vw;
}

.works-detailed-mv__imgs-grass {
    backdrop-filter: blur(100px);
    position: absolute;
    top: 0;
}

.works-detailed-mv__thumbnail {    
    width: min(720px, calc(720 / var(--width) * 100vw));
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}

.works-detailed-mv__thumbnail video {
    width: 100%;
}

/* ========== タイトル ========== */ 
.works-detailed-title__wrapper {
    padding: 40px calc(var(--padding) / var(--width) * 100vw) 20px calc(var(--padding) / var(--width) * 100vw);
    border-bottom: 1px solid var(--text);
}

.works-detailed-title__main h2 {
    font-size: min(40px, calc(40 / var(--width) * 100vw));
    color: var(--text);
}

.works-detailed-title__main h2 a::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-left: 12px;
    background: url("../img/external-link.svg") no-repeat center center;
    background-size: contain;
}

.external-link {
    width: calc(28 / var(--width) * 100vw);
    height: calc(28 / var(--width) * 100vw);
}

.works-detailed-title__sub {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    font-weight: var(--fw-L);
    display: flex;
    align-items: center;
    gap: 12px;
}

.works-detailed-title__sub-kind {
    border: solid 1px var(--text);
    border-radius: 24px;
    font-weight: var(--fw-R);
    padding: 4px 12px 0 12px;
}

.works-detailed-title__sub-type::before {
    content: "#";
    display: inline-block;
}

/* ========== ABOUT ========== */
.works-detailed-contents {
    margin-top: calc(48 / var(--width) * 100vw);
}

.works-detailed-contents__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
}

.works-detailed-contents__title {
    margin-bottom: calc(60 / var(--width) * 100vw);
}

.works-detailed-contents__title-img {
    top: 70%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* 詳細 */
.works-detailed-contents__info {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
}

.works-detailed-contents__info-wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
}

.works-detailed-contents__info-column {
    display: flex;
    font-size: min(18px, calc(18 / var(--width) * 100vw));
}

.works-detailed-contents__info-topic {
    width: 20%;
    color: var(--main);
    font-weight: var(--fw-SB);
}

.works-detailed-contents__info-txt {
    width: 80%;
    line-height: 1.8rem;
    margin-bottom: calc(64 / var(--width) * 100vw);
}

.works-detailed-contents__info-txt-items {
    display: flex;
}

.works-detailed-contents__info-txt-items-left {
    width: 24%;
}

.works-detailed-contents__info-txt-items-right {
    width: 76%;
}

.works-detailed-contents__info-txt-items.design {
    margin-bottom: calc(20 / var(--width) * 100vw);
}

.works-detailed-contents__info-txt ul li {
    list-style: disc inside;
}


/* ========== もっと詳しく ========== */
.works-contents-detailed__title2 {
    margin-bottom: calc(100 / var(--width) * 100vw);
}

.works-contents-detailed__title2-img {
    width: 16vw;
    height: auto;
    aspect-ratio: 172 / 141;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -35%);
    z-index: -1;
}

.works_01 {
    width: 100%;
}

.works_01 use {
    fill: var(--accent);
}

/* ========== 完成図 ========== */
.works-detailed-contents__title3 {
    margin-top: calc(120 / var(--width) * 100vw);
    margin-bottom: calc(100 / var(--width) * 100vw);
}

.works-detailed-contents__title3-img {
    width: 18vw;
    height: auto;
    aspect-ratio: 264 / 153;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: -1;
}

.contact_01 {
    width: 100%;
}

.contact_01 {
    fill: var(--accent);
}

.works-detailed-contents__design-wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    margin: 0 auto;
    position: relative;
}

.works-detailed-contents__design-pc {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto calc(120 / var(--width) * 100vw) auto;
    height: auto;
    overflow: hidden;
    aspect-ratio: 1440 / 900;
    overflow-y: scroll;
    border: solid 10px white;
    border-radius: 20px;
}

.works-detailed-contents__design-sp {
    width: 20vw;
    height: auto;
    aspect-ratio: 375 / 667;
    overflow: hidden;
    overflow-y: scroll;
    border: solid 10px white;
    border-radius: 20px;
    margin: 0 auto;
}

.works-detailed-contents__design-pc img,
.works-detailed-contents__design-sp img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}



/* ========== 他ページ導線 ========== */
.works-detailed-contents__btn-area-wrapper {
    margin-top: calc(180 / var(--width) * 100vw);
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.works-detailed-contents__btn-area-right {
    display: flex;
    gap: calc(48 / var(--width) * 100vw);
    align-items: center;
}

.works-detailed-contents__btn-area-next-thumbnail {
    overflow: hidden;
    border-radius: 12px;
}

.works-detailed-contents__btn-area-next-thumbnail img {
    width: calc(300 / var(--width) * 100vw);
    height: calc(300 / var(--width) * 100vw);
    border-radius: 12px;
    transform-origin: center center;
    object-fit: cover;
    transition: all 0.6s ease;
}

.works-detailed-contents__btn-area-next-thumbnail:hover img {
    transform: scale(1.1);
}

/* ========== 全貌イメージ ========== */ 
.works-contents-detailed__info-img-area {
    width: 100vw;
    margin-bottom: calc(80 / var(--width) * 100vw);
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ page-profile ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ========== 概要 ========== */ 
.about-about {
    margin-top: calc(200 / var(--width) * 100vw);
}

.about-about__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
}

.about-about__title-img {
    top: 70%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: -1;
}


.about-about__content {
    margin-top: calc(100 / var(--width) * 100vw);
    display: flex;
    gap: calc(48 / var(--width) * 100vw);
    align-items: center;
}

.about-about__content-left {
    width: 30%;
}

.about-about__content-left img {
    border-radius: 32% 68% 44% 56% / 53% 32% 68% 47%;
}

.about-about__content-right {
    width: 70%;
}

.about-about__content-right-name {
    margin-bottom: calc(40 / var(--width) * 100vw);
}

.about-about__content-right-name-en {
    font-size: min(48px, calc(48 / var(--width) * 100vw));
    font-weight: var(--fw-B);
}

.about-about__content-right-name-jp {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    font-weight: var(--fw-SB);
}

.about-about__content-right-txt {
    font-size: min(18px, calc(18 / var(--width) * 100vw));
    line-height: 1.8rem;
}

.about-about__content-right-txt p {
    margin-bottom: calc(20 / var(--width) * 100vw);
}

/* ========== 強み ========== */
.about-strength {
    margin-top: calc(200 / var(--width) * 100vw);
}

.about-strength__wrapper {
    padding: 0 calc(var(--padding) / var(--width) * 100vw);
}

.about-strength__title-img {
    width: 18vw;
    height: auto;
    aspect-ratio: 264 / 153;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    z-index: -1;
}

.about-strength__contents {
    display: flex;
    margin-top: calc(84 / var(--width) * 100vw);
    padding: 0 calc(120 / var(--width) * 100vw);
    gap: calc(80 / var(--width) * 100vw);
}

.about-strength__contents-card-title-en {
    font-size: min(28px, calc(28 / var(--width) * 100vw));
    font-weight: var(--fw-B);
    text-align: center;
}

.about-strength__contents-card-title-jp {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    font-weight: var(--fw-B);
    text-align: center;
    margin-bottom: calc(20 / var(--width) * 100vw);
}

.about-strength__contents-card {
    flex: 1;
}

.about-strength__contents-card-img img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: calc(20 / var(--width) * 100vw);
}

.about-strength__contents-card-txt {
    font-size: min(18px, calc(18 / var(--width) * 100vw));
    line-height: 1.8rem;
}

/* ========== できること ========== */
.about-skill {
    margin-top: calc(200 / var(--width) * 100vw);
    margin-bottom: calc(200 / var(--width) * 100vw);
}

.about-skill__title-img {
    width: 16vw;
    height: auto;
    aspect-ratio: 172 / 141;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-20%, -25%);
    z-index: -1;
}

.about-skill__contents {
    margin-top: calc(120 / var(--width) * 100vw);
    padding: 0 calc(240 / var(--width) * 100vw);
    display: flex;
    flex-direction: column;
    gap: calc(40 / var(--width) * 100vw);
}

.about-skill__contents-card {
    display: flex;
    gap: calc(60 / var(--width) * 100vw);
}

.about-skill__contents-card-img {
    width: 30%;
}

.about-skill__contents-card-img img {
    border-radius: 8px;
}

.about-skill__contents-card-txt {
    width: 70%;
}

.about-skill__contents-card-txt-title {
    font-size: min(28px, calc(28 / var(--width) * 100vw));
    font-weight: var(--fw-SB);
}

.about-skill__contents-card-txt-skillsets {
    display: flex;
    flex-wrap: wrap;
    gap: calc(12 / var(--width) * 100vw);
    margin-bottom: calc(20 / var(--width) * 100vw);
}

.about-skill__contents-card-txt-skillset {
    font-size: min(20px, calc(20 / var(--width) * 100vw));
    border: solid 1px var(--text);
    border-radius: 24px;
    width: min(120px, calc(120 / var(--width) * 100vw));
    height: min(32px, calc(32 / var(--width) * 100vw));
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: calc(4 / var(--width) * 100vw);
}

.about-skill__contents-card-txt-comment {
    font-size: min(18px, calc(18 / var(--width) * 100vw));
    line-height: 1.6rem;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ page-thanks ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.thanks-page {
    text-align: center;
    padding: 120px 20px 0 20px;
}

.thanks-title {
    font-size: calc(20 / var(--width) * 100vw);
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: calc(16 / var(--width) * 100vw);
    line-height: 1.8;
    margin-bottom: 2em;
}

.thanks__btn-text-en svg {
    rotate: 90deg;
}

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ page-contact ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.contact-page {
    margin-top: calc(100 / var(--width) * 100vw);
}

@media screen and (max-width: 430px) {
    /* ========== Base & Reset ========== */
    .hamburger-menu,
    .sp-menu,
    .sp-image {
        display: block;
    }

    .sp-only {
        display: flex;
    }

    .pc-image,
    .header__nav,
    .SK-top-mv__season-select,
    .pc-only {
        display: none;
    }

    /* title */
    .title-en {
        font-size: min(48px, calc(48 / var(--width) * 100vw));
    }

    /* btn */
    .btn-area {
        width: calc(160 / var(--width) * 100vw);
    }

    .btn-text-en {
        font-size: calc(16 / var(--width) * 100vw);
    }

    .btn-text-en svg {
        width: 16px;
        height: 16px;
    }

    .btn-text-ja {
        font-size: calc(14 / var(--width) * 100vw);
    }

    /* ========== Hamburger Menu ========== */
    .btn-trigger {
        position: fixed;
        top: var(--padding);
        right: var(--padding);
        width: min(32px, calc(32 / var(--width) * 100vw));
        height: min(20px, calc(20 / var(--width) * 100vw));
        cursor: pointer;
        z-index: 1001;
    }

    .btn-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--text);
        transition: all 0.5s;
    }

    .btn-trigger, .btn-trigger span {
        display: inline-block;
        transition: all 0.5s;
    }

    .btn-trigger span:nth-of-type(1) {
        top: 0;
    }

    .btn-trigger span:nth-of-type(2) {
        top: 10px;
    }

    .btn-trigger span:nth-of-type(3) {
        top: 20px;
    }

    .btn-trigger.active span:nth-of-type(1) {
        transform: rotate(45deg) translate(16px, 7px);
    }

    .btn-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .btn-trigger.active span:nth-of-type(3) {
        transform: rotate(-45deg) translate(7px, 2px);
    }

    /* ハンバーガーメニュー ページ */
    .sp-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -90%;
        width: 80vw;
        height: 100vh;
        background-color: var(--bg);
        opacity: 0.95;
        color: var(--text);
        transition: right 0.3s ease;
        z-index: 99;
        padding: 100px 20px 20px;
        overflow-y: auto;
        text-align: center;
    }

    .sp-menu.active { right: 0%; }
   
    .sp-menu__list {
        margin-bottom: 50px;
    }

    .sp-menu__list a,
    .cta-btn__text {
        font-size: 24px;
    }

    .sp-menu__contact-btn-link {
        padding: 18px 20px 8px 20px;
        border: solid 1px var(--text);
        border-radius: 24px;
    }

    .sp-menu__contact-btn-link:active {
        background-color: var(--text);
        color: var(--bg);
    }
        
    /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ front-page ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
    /* ========== MV ========== */
    /* 背景配置 */
    /* 左上 */
    .SK-top-mv__bg-lt {
        top: calc(120 / var(--width) * 100vw);
        left: calc(-20 / var(--width) * 100vw);
        width: 50vw;
    }

    /* 右上 */
    .SK-top-mv__bg-rt {
        top: calc(-20 / var(--width) * 100vw);
        width: 70vw;
    }

    .mv_rt02 {
        top: calc(70 / var(--width) * 100vw);
        right: calc(100 / var(--width) * 100vw);
        width: 27vw;
    }

    /* 左下 */
    .SK-top-mv__bg-lb {
        top: calc(480 / var(--width) * 100vw);
        width: 50vw;
    }

    .mv_lb02 {
        top: calc(150 / var(--width) * 100vw);
        left: calc(100 / var(--width) * 100vw);
        width: 27vw;
    }

    /* 右下 */
    .SK-top-mv__bg-rb {
        bottom: calc(50 / var(--width) * 100vw);
        right: 0;
        width: 70vw;
    }

    /* シーズン切り替え */
    .sp-menu__season-select {
        margin-top: 78px;
    }

    .sp-menu__season-select-icons {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .season-icon svg use {
        fill: var(--text);
    }

    /* mvテキスト */
    .SK-top-mv__text-area {
        text-align: center;
    }

    .SK-top-mv__text-area-name {
        font-size: min(72px, calc(72 / var(--width) * 100vw));
        line-height: 4rem;
    }

    .SK-top-mv__text-area-name.scrolled,
    .SK-top-mv__text-area-name-scrolled {
        font-size: min(20px, calc(20 / var(--width) * 100vw));
        top: calc(var(--padding) / var(--width) * 100vw);
        left: calc(var(--padding) / var(--width) * 100vw);
        z-index: 101;
        line-height: 1.6rem;
    }

    .SK-top-mv__text-area-title {
        font-size: min(16px, calc(16 / var(--width) * 100vw));
        margin-top: 0;
        margin-bottom: calc(40 / var(--width) * 100vw);
    }

    .SK-top-mv__text-area-headline {
        font-size: min(20px, calc(20 / var(--width) * 100vw));
    }

    .SK-top-mv__scroll {
        width: min(20px, calc(32 / var(--width) * 100vw));
        height: min(20px, calc(32 / var(--width) * 100vw));
    }

    /* ========== WORKS ========== */
    .SK-top-works__tag-area {
        gap: calc(12 / var(--width) * 100vw);
    }

    .SK-top-works__tag {
        font-size: min(18px, calc(18 / var(--width) * 100vw));
        padding: 6px 12px 2px 12px;
    }

    .SK-top-works__work-area {
        grid-template-columns: repeat(2, 1fr);
        gap: calc(20 / var(--width) * 100vw);
    }

    .SK-top-works__work-title {
        font-size: min(16px, calc(16 / var(--width) * 100vw));
    }
    .SK-top-works__work-comment {
        font-size: min(12px, calc(12 / var(--width) * 100vw));
    }

    .SK-top-works__btn-area {
        margin-top: calc(60 / var(--width) * 100vw);
    }

    /* 背景装飾 */
    .SK-top-works__bg-r-base {
        width: 35vw;
        top: calc(300 / var(--width) * 100vw);
    } 

    .SK-top-works__bg-r-add {
        width: 22vw;
        top: calc(480 / var(--width) * 100vw);
    }


    .SK-top-works__bg-l {
        width: 30vw;
        top: calc(880 / var(--width) * 100vw);
    }

    /* ========== ABOUT ========== */
    .SK-top-about {
        margin-top: calc(100 / var(--width) * 100vw);
    }

    .about_01 {
        width: 40vw;
        top: 50%;
        left: 50%;
        transform: translate(-55%, -5%);
    }

    .about_02 {
        width: 20vw;
        top: 50%;
        left: 50%;
        transform: translate(-20%, 15%);
    }

    .SK-top-about__content-area {
        flex-direction: column;
        gap: calc(28 / var(--width) * 100vw);
        margin-top: calc(28 / var(--width) * 100vw);
    }

    .SK-top-about__img img {
        width: 80%;
        margin: 0 auto;
    }

    .SK-top-about__text-area {
        font-size: calc(16 / var(--width) * 100vw);
    }

    .SK-top-about__btn-area {
        margin: calc(32 / var(--width) * 100vw) auto 0 auto;
    }

    /* ========= CONTACT ========= */
    .SK-top-contact {
        margin-top: calc(160 / var(--width) * 100vw);
    }

    .SK-top-contact__sub-text {
        font-size: calc(16 / var(--width) * 100vw);
    }

    .form-row {
        display: block;
        border-bottom: 1px solid var(--text);
    }

    .form-label,
    .form-content {
        display: block;
        width: 100%;
        border-right: none;
        padding: 0.8rem 1rem;
    }

    .form-label {
        border-bottom: 1px solid var(--text);
        background-color: var(--bg-t);
    }

    .form-label-text {
        display: block;
        font-size: 1rem;
    }

    .form-content {
        padding-left: 1rem;
    }

    .form-spaceholder,
    .SK-top-contact__form-content-spaceholder {
        width: 100%;
    }

    input.form-input-space,
    textarea.form-input-space {
        width: 100%;
        font-size: 1rem;
    }

    .SK-top-contact__form-area {
        width: 100%;
        border-width: 1px;
    }

    /* 背景装飾 */
    .SK-top-contact__bg-r-base {
        width: 35vw;
        top: calc(300 / var(--width) * 100vw);
    } 

    .SK-top-contact__bg-r-add {
        width: 22vw;
        top: calc(500 / var(--width) * 100vw);
    }

    .SK-top-contact__bg-l {
        width: 30vw;
        top: calc(700 / var(--width) * 100vw);
    }

    /* ========== Footer ========== */
    .footer {
        margin-top: calc(70 / var(--width) * 100vw);
    }

    .footer__wrapper {
        height: calc(200 / var(--width) * 100vw);
    }

    .footer_01_sp {
        position: absolute;
        bottom: 0;
        width: 100vw;
        overflow: visible;
        z-index: -1;
    }

    .footer_01_sp {
        width: 100%;
        height: auto;
        aspect-ratio: 393 / 162;
        overflow: visible;
    }

    .footer_01_sp {
        fill: var(--main);
    }

    .footer_02 {
        top: 0;
        right: calc(var(--padding) / var(--width) * 100vw);
        width: 22vw;
    }

    .footer__text-area {
        bottom: 10px;
    }

    .footer__text-area-sns {
        gap: calc(12 / var(--width) * 100vw);
        margin-bottom: calc(12 / var(--width) * 100vw);
    }

    .footer__text-area-sns svg {
        width: 32px;
        height: 32px;
    }
    
    /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ archive-work ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
    .SK-archive-works {
        margin-top: calc(80 / var(--width) * 100vw);
    }

    /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ single-work ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

    /* ========== TOP view ========= */
    .works-detailed-mv {
        margin-top: min(60px, calc(60 / var(--width) * 100vw));
    }

    .works-detailed-mv__imgs-work img,
    .works-detailed-mv__imgs-grass img {
        width: 100vw;
        height: 30vh;
        object-fit: cover;
    }

    .works-detailed-mv__imgs-grass {
        backdrop-filter: blur(50px);
    }

    .works-detailed-mv__thumbnail {    
        width: 80vw;
    }

    /* ========== タイトル ========== */
    .works-detailed-title__wrapper {
        padding: 20px calc(var(--padding) / var(--width) * 100vw) 8px calc(var(--padding) / var(--width) * 100vw);
        border-bottom: 1px solid var(--text);
    }

    .works-detailed-title__main {
        gap: 4px;
    }

    .works-detailed-title__main h2 {
        font-size: min(20px, calc(20 / var(--width) * 100vw));
    }

    .works-detailed-title__main h2::after {
        width: 20px;
        height: 20px;
        margin-left: 4px;
    }

    .works-detailed-title__sub {
        font-size: min(16px, calc(16 / var(--width) * 100vw));
        gap: 12px;
    }

    /* ========== ABOUT ========== */

    .works-detailed-contents__title-img {
        top: 70%;
        left: 55%;
        transform: translate(-50%, -50%);
        z-index: -1;
    }

    .about_01 {
        width: 40vw;
        top: 50%;
        left: 50%;
        transform: translate(-60%, -5%);
    }

    .about_02 {
        width: 25vw;
        top: 50%;
        left: 50%;
        transform: translate(-30%, 10%);
    }

    /* 詳細 */
    .works-detailed-contents__info-column {
        flex-direction: column;
    }

    .works-detailed-contents__info-topic {
        text-align: center;
        width: 100%;
        margin-bottom: 12px;
    }

    .works-detailed-contents__info-txt {
        width: 100%;
        font-size: min(16px, calc(16 / var(--width) * 100vw));
        line-height: 1.6rem;
        margin-bottom: calc(40 / var(--width) * 100vw);
    }

    .works-detailed-contents__info-txt-items-left {
        width: 50%;
    }

    .works-detailed-contents__info-txt-items-right {
        width: 50%;
    }

    .works-detailed-contents__info-txt-items.design {
        flex-direction: column;
    }

    .works-detailed-contents__info-txt-items.design .works-detailed-contents__info-txt-items-left {
        width: 100%;
        display: inline;
        border-bottom: dotted medium var(--surface);
    }

    .works-detailed-contents__info-txt-items.design .works-detailed-contents__info-txt-items-right {
        width: 100%;
    }

    /* ========== 完成図 ========== */
    .works-detailed-contents__title3 {
        margin-top: calc(80 / var(--width) * 100vw);
        margin-bottom: calc(60 / var(--width) * 100vw);
    }

    .works-detailed-contents__title3-img {
        width: 45vw;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);
    }

    .works-detailed-contents__design-sp {
        width: 80vw;
    }

    /* ========== 他ページ導線 ========== */
    .works-detailed-contents__btn-area-wrapper {
        flex-direction: column-reverse;
        gap: calc(120 / var(--width) * 100vw);
    }

    .works-detailed-contents__btn-area-right {
        flex-direction: column-reverse;
        gap: calc(20 / var(--width) * 100vw);
    }

    /* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ page-profile ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
    /* ========== 概要 ========== */
    .about-about {
        margin-top: calc(88 / var(--width) * 100vw);
    }


    .about-about__content {
        margin-top: min(28px, calc(28 / var(--width) * 100vw));
        flex-direction: column;
        gap: calc(20 / var(--width) * 100vw);    
    }

    .about-about__content-left,
    .about-about__content-right {
        width: 100%;
    }

    .about-about__content-right-name {
        text-align: center;
    }

    .about-about__content-right-txt {
        font-size: min(16px, calc(16 / var(--width) * 100vw));
        line-height: 1.8rem;
    }

    /* ========== 強み ========== */
    .about-strength {
        margin-top: calc(100 / var(--width) * 100vw);
    }

    .about-strength__title-img {
        width: 40vw;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -40%);
    }

    .about-strength__contents {
        flex-direction: column;
        gap: calc(60 / var(--width) * 100vw);
        padding: 0;
    }

    .about-strength__contents-card {
        width: 100%;
    }

    .about-strength__contents-card-txt {
        font-size: min(16px, calc(16 / var(--width) * 100vw));
        line-height: 1.8rem;
    }

    /* ========== できること ========== */
    .about-skill {
        margin-top: calc(100 / var(--width) * 100vw);
        margin-bottom: calc(100 / var(--width) * 100vw);
    }

    .about-skill__title-img {
        width: 40vw;
        top: 50%;
        left: 50%;
        transform: translate(-30%, -45%);
        z-index: -1;
    }
    
    .about-skill__contents {
        gap: calc(60 / var(--width) * 100vw);
        padding: calc(20 / var(--width) * 100vw);
        margin-top: calc(80 / var(--width) * 100vw);
    }

    .about-skill__contents-card {
        flex-direction: column;
        gap: calc(20 / var(--width) * 100vw);
    }

    .about-skill__contents-card-img,
    .about-skill__contents-card-txt {
        width: 100%;
    }
    
    .about-skill__contents-card-img-title-sp {
        justify-content: center;
        font-size: min(28px, calc(28 / var(--width) * 100vw));
        font-weight: var(--fw-SB);
        margin-bottom: calc(18 / var(--width) * 100vw);
    }

    .about-skill__contents-card-img img {
        width: 70%;
        margin: 0 auto;
    }

    .about-skill__contents-card-txt-skillsets {
        justify-content: center;
        margin-bottom: calc(20 / var(--width) * 100vw);
    }

    .about-skill__contents-card-txt-comment {
        font-size: min(16px, calc(16 / var(--width) * 100vw));
    }
}
