
/* ========================================
   省エネ遮熱事業イントロセクション
======================================== */

body {
    overflow-x: visible !important;
}

/* 単語ごとの改行制御（サーモバリア / スカイ工法 等） */
.menu-label-jp .nowrap {
    white-space: nowrap;
    display: inline-block;
}

.energy-intro {
    background-color: #FFFFFF;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    max-width: 1500px;
    margin: 0 auto;
}

.energy-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    margin: 0 auto;
}

.energy-background-elements > .initial-circle-green {
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    width: 250px;
    height: 250px;
    background: linear-gradient(0deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: burstAnimation 0.6s ease-out 1s forwards;
}

/* 弾けるアニメーション */
@keyframes burstAnimation {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
        visibility: hidden;
    }
}

/* 背景円の初期状態（非表示） */
.energy-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    animation: appearAndFloat 0.3s ease-out forwards, floatingCircle 10s ease-in-out infinite;
}

/* 円の出現アニメーション */
@keyframes appearAndFloat {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
    }
}

/* 浮遊アニメーション */
@keyframes floatingCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.05);
    }
    50% {
        transform: translateY(15px) scale(0.95);
    }
    75% {
        transform: translateY(-10px) scale(1.02);
    }
}

.circle-large {
    width: 250px;
    height: 250px;
}

.circle-medium {
    width: 94px;
    height: 94px;
}

.circle-small {
    width: 47px;
    height: 47px;
}

/* 円の配置 */
.energy-circle.circle-1 {
    top: 76%;
    left: 11%;
    background: linear-gradient(0deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    animation-delay: 1.6s, calc(1.6s + 0.5s);
}

.energy-circle.circle-2 {
    top: 56%;
    left: 23%;
    background: linear-gradient(90deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    width: 153px;
    height: 153px;
    animation-delay: 1.65s, calc(1.65s + 0.5s);
}

.energy-circle.circle-3 {
    top: 58%;
    right: 35%;
    background: linear-gradient(315deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    animation-delay: 1.7s, calc(1.7s + 0.5s);
}

.energy-circle.circle-4 {
    top: 14%;
    left: 56%;
    background: linear-gradient(220deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    animation-delay: 1.75s, calc(1.75s + 0.5s);
}

.energy-circle.circle-5 {
    top: 57%;
    left: 82%;
    background: linear-gradient(310deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    width: 121px;
    height: 121px;
    animation-delay: 1.8s, calc(1.8s + 0.5s);
}

.energy-copy {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.energy-main-copy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 2.0;
    margin: 0;
}

/* ========================================
   総合建設業詳細セクション
======================================== */
.energy-detail {
    background-color: #FFFFFF;
    padding: 80px 0 120px;
}

.energy-detail-layout {
    display: flex;
    gap: 80px;
}

.energy-detail-image {
    flex: 0 0 400px;
    overflow: hidden;
}

.energy-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.energy-detail-content {
    flex: 1;
}

.energy-detail-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 2.5;
    margin: 0;
}

/* ========================================
   メニューセクション
======================================== */
/* メニューセクション */
.energy-menu {
    background-color: #EAEBEF;
    padding: 0 0 120px;
    position: relative;
}

.menu-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.menu-items {
    flex: 1;
    max-width: 600px;
}

.menu-item {
    background-color: #EAEBEF;
    padding: 80px 0;
    margin-bottom: 40px;
    border-radius: 12px;
}

.menu-item:last-child {
    margin-bottom: 0;
}

.menu-content {
    max-width: 100%;
}

.menu-left {
    width: 600px;
}

/* 固定される円形要素 */
.menu-circles-wrapper {
    flex: 0 0 400px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    height: fit-content;
    pointer-events: none;
    margin:  0 auto;
    padding-top: 80px;
}

.menu-circles {
    position: relative;
    width: 500px;
    height: 465px;
    margin: 0;
    pointer-events: all;
}

/* 円形の白い背景ベース */
.menu-circles-base {
    position: absolute;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* 上の円のベース（リフォーム） */
.menu-circles-base:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: 270px;
    background: #FFFFFF;
    z-index: 3;
}

/* 左下の円のベース（新築工事） */
.menu-circles-base:nth-child(2) {
    bottom: 0;
    left: 0;
    width: 270px;
    height: 270px;
    background: #FFFFFF;
    z-index: 2;
}

/* 右下の円のベース（改修工事） */
.menu-circles-base:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 270px;
    height: 270px;
    background: #FFFFFF;
    z-index: 2;
}

/* 円形メニュー（テキストコンテナ） */
.menu-circle {
    position: relative;
    width: calc(100% - 30px);
    height: calc(100% - 40px);
    margin: 15px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.4s ease;
    background: transparent;
    background-image: url(../img/energy/energy_gray.png);
    background-size: cover;
    background-position: center;
}

/* アクティブ状態のベース拡大 */
.menu-circle.is-active {
    transform: scale(1.05);
    background-image: url(../img/energy/energy_green.png);
    background-size:cover;
}

.menu-circles-base:has(.menu-circle.is-active) {
    transform: scale(1.05);
    z-index: 10;
}

/* 上の円がアクティブ時 */
.menu-circles-base:nth-child(1):has(.menu-circle.is-active) {
    transform: translateX(-50%) scale(1.05);
}

/* テキストをオーバーレイの上に */
.circle-text-en,
.circle-text-jp {
    position: relative;
    z-index: 2;
}

.circle-text-en {
    font-family: 'Secular One', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: font-size 0.4s ease, color 0.4s ease;
}

.circle-text-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    transition: font-size 0.4s ease, color 0.4s ease;
}

/* アクティブ時のテキスト */
.menu-circle.is-active .circle-text-en,
.menu-circle.is-active .circle-text-jp {
    color: #000000;
}

/* 非アクティブ時のテキスト */
.menu-circle.is-inactive .circle-text-en,
.menu-circle.is-inactive .circle-text-jp {
    color: #FFF9F9;
}

/* メニューヘッダー */
.menu-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.menu-label {
    font-family: 'Secular One', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 1px;
    position: relative;
    padding-right: 15px;
}

/* 縦線を追加 */
.menu-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: #AAAAAA;
}

.menu-label-jp {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    padding-left: 4px;
}

.menu-header::before {
    content: '';
    width: 15px;
    height: 15px;
    background: linear-gradient(340deg, #24853B 0%, #ADE35C 50%, #FFFFFF 100%);
    border-radius: 50%;
}

/* メニュータイトル */
.menu-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

/* メニュー説明 */
.menu-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 2.5;
    margin-bottom: 50px;
    letter-spacing: 1.5px;
}

/* メニューリスト */
.menu-list {
    margin: 40px 0;
}

.menu-list-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
    letter-spacing: 1.5px;
    width:fit-content;
}

.menu-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-checklist li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
}

.menu-checklist li::before {
    content: '☑';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* ステップフロー（新築工事用） */
.menu-steps {
    margin-top: 40px;
}

.step-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

.step-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    background-color: #FFFFFF;
    padding: 20px 30px;
    border-radius: 25px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    width: 427px;
    margin: 0 auto;
}

.step-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  position: relative;
  width: 1px;
  height: 1em;
  background: currentColor;
  margin: 0 auto;
}

.step-arrow::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 2px solid currentColor;
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  position: absolute;
  left: 50%;
  bottom: -0.05em;
  box-sizing: border-box;
}

/* 改修工事カテゴリー */
.repair-category {
    margin-bottom: 30px;
}

.repair-category:last-child {
    margin-bottom: 0;
}

.menu-circle-left {
    bottom: 0;
    left: 0;
    height: calc(100% - 10px);
    width: calc(100% - 50px);
}

.menu-circle-right {
    bottom: 0;
    right: 0;
    height: calc(100% - 10px);
    width: calc(100% - 10px);
}

.category-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* ========================================
   WORKSセクション（ページ版）
======================================== */

/* 注釈テキスト */
.works-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.works-view-more {
    display: inline-block;
    padding: 25px 55px;
    border: 3px solid #AAAAAA;
    border-radius: 50px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #AAAAAA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.works-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #000000(123, 193, 254, 0.4);
}

.button-icon {
    margin-right: 10px;
}


/* ========================================
   レスポンシブ対応
======================================== */
@media screen and (max-width: 1280px) {

    body {
        overflow-x: hidden !important;
    }


    /* 初期円のサイズ調整 */
    .energy-background-elements > .initial-circle-green {
        width: 300px;
        height: 300px;
        top: 50%;
        left: 50%;
    }
    
    /* 背景円のサイズ調整 */
    .circle-large {
        width: 150px;
        height: 150px;
    }
    
    .circle-medium {
        width: 60px;
        height: 60px;
    }
    
    .circle-small {
        width: 30px;
        height: 30px;
    }

    .energy-circle.circle-5 {
        left: 80%;
    }

    .energy-menu {
        padding: 0 0 80px;
    }
    
    .menu-item {
        padding: 40px 20px;
        margin-bottom: 30px;
    }
    
    .menu-content {
        padding-right: 0;
    }
    
   /* モバイルでは固定を解除して最初のアイテムの上に表示 */
    .menu-circles-wrapper {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 40px;
        right: auto;
        top: auto;
    }
    
    .menu-circles {
        position: static;
        width: 300px;
        height: 300px;
        margin: 0 auto 40px;
    }

    .menu-circles-base:nth-child(1) {
        top: 5%;
    }
    
    .menu-circle-active {
        width: 180px;
        height: 180px;
        margin: 0;
        padding: 0;
    }
    
    .menu-circle-inactive {
        width: 140px;
        height: 140px;
    }
    
    .circle-text-en {
        font-size: 11px;
    }
    
    .circle-text-jp {
        font-size: 13px;
    }
    
    .menu-circle-inactive .circle-text-en {
        font-size: 9px;
    }
    
    .menu-circle-inactive .circle-text-jp {
        font-size: 11px;
    }
    
    .menu-title {
        font-size: 24px;
    }
    
    .menu-description {
        font-size: 14px;
    }
    
    .menu-checklist li {
        font-size: 14px;
    }
    
    .step-item {
        padding: 15px 25px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    /* 初期円のさらなるサイズ調整 */
    .energy-background-elements > .initial-circle-green {
        width: 180px;
        height: 180px;
    }
}
/* ========================================
   包括的レスポンシブ対応追加
   タブレット: 768px - 1024px
   モバイル: 767px以下
======================================== */


/* ========================================
   建設イントロセクション - レスポンシブ強化
======================================== */
@media screen and (max-width: 1024px) {
    .energy-intro {
        padding: 80px 0;
        min-height: 500px;
    }
    
    .energy-main-copy {
        font-size: 32px;
        line-height: 1.5;
    }
    
    /* 背景の円を調整 */
    .energy-circle.circle-large {
        width: 120px;
        height: 120px;
    }
    
    .energy-circle.circle-medium {
        width: 80px;
        height: 80px;
    }
    
    .energy-circle.circle-small {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 767px) {
    .energy-intro {
        padding: 75px 0;
        min-height: auto;
    }
    
    .energy-copy {
        text-align: left;
    }
    
    .energy-main-copy {
        font-size: 24px;
        line-height: 1.6;
    }
    
    /* 背景円をさらに小さく */
    .energy-circle.circle-large {
        width: 80px;
        height: 80px;
    }
    
    .energy-circle.circle-medium {
        width: 60px;
        height: 60px;
    }
    
    .energy-circle.circle-small {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   詳細セクション - レスポンシブ強化
======================================== */
@media screen and (max-width: 1024px) {
    .energy-detail {
        padding: 80px 0;
    }
    
    .energy-detail-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .energy-detail-image,
    .energy-detail-content {
        max-width: 100%;
        flex: 0;
    }
    
    .energy-detail-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .energy-detail {
        padding: 60px 0;
    }
    
    .energy-detail-layout {
        gap: 30px;
    }
    
    .energy-detail-text {
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
    }
}

/* ========================================
   メニューセクション - レスポンシブ
======================================== */
@media screen and (min-width: 768px) and (max-width: 1280px) {
    .menu-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .menu-circles-wrapper {
        position: relative;
        top: unset;
        width: 100%;
        flex: unset;
        padding-top: 0;
        margin-bottom: 40px;
        order: -1;
    }
    
    .menu-circles {
        width: 350px;
        height: 330px;
        margin: 0 auto;
    }
    
    .menu-circles-base:nth-child(1),
    .menu-circles-base:nth-child(2),
    .menu-circles-base:nth-child(3) {
        width: 180px;
        height: 180px;
    }
    
    .circle-text-en {
        font-size: 14px;
    }
    
    .circle-text-jp {
        font-size: 20px;
    }
    
    .menu-items {
        max-width: 100%;
    }
    
    .menu-left {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .menu-item {
        padding: 60px 0;
    }
    
    .menu-title {
        font-size: 24px;
    }
    
    .menu-description {
        font-size: 15px;
    }
}

@media screen and (max-width: 1280px) {
    .energy-menu {
        padding: 60px 0;
    }

    .menu-wrapper {
        display: block;
    }
    
    /* モバイルでは円形メニューを右下に固定 */
    .menu-circles-wrapper {
        position: fixed;
        right: 20px;
        bottom: 150px;
        width: 150px;
        height: 150px;
        margin: 0;
        padding: 0;
        z-index: 100;
        overflow: visible;
        pointer-events: none;
    }
    
    /* モバイル時に円を非表示にするクラス */
    .menu-circles-wrapper.is-hidden {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-circles {
        position: relative;
        width: 150px;
        height: 150px;
        margin: 0;
        pointer-events: all;
    }
    
    /* 円を全て同じ位置に重ねる */
    .menu-circles-base {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 150px !important;
        height: 150px !important;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        flex-shrink: 0;
    }
    
    /* アクティブな円だけ表示 */
    .menu-circles-base:has(.menu-circle.is-active) {
        opacity: 1;
        visibility: visible;
        z-index: 10;
    }
    
    .menu-circle {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        margin: 10px;
        padding: 15px;
    }
    
    .circle-text-en {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .circle-text-jp {
        font-size: 16px;
    }
    
    /* メニュー項目の調整 */
    .menu-item {
        padding: 40px 0;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .menu-left {
        width: 100%;
        padding: 0 20px;
    }
    
    .menu-header {
        gap: 5px;
        margin-bottom: 35px;
        width: 100%;
    }
    
    .menu-label {
        font-size: 14px;
        width: 50%;
    }
    
    .menu-label-jp {
        font-size: 18px;
    }
    
    .menu-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .menu-description {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 30px;
        text-align: justify;
    }
    
    /* STEPフロー */
    .step-flow {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .step-arrow {
        margin: 10px auto;
    }
    
    .step-item {
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    /* チェックリスト */
    .menu-checklist {
        padding-left: 0;
    }

    .menu-checklist li {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.7;
        letter-spacing: 0.03em;
        padding: 6px 0 6px 24px;
        margin: 0;
        align-items: flex-start; /* 複数行でも上揃え */
    }

    .menu-checklist li::before {
        content: '☑';
        width: auto;
        height: auto;
        left: 0;
        top: 6px;
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* 修繕カテゴリー */
    .repair-category {
        margin-bottom: 25px;
    }
    
    .category-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .works-button {
        text-align: center;
    }

    .works-view-more {
        font-size: 14px;
        padding: 16px 45px;
        border: 2px solid #AAAAAA;
    }

    .button-icon {
        width: 20%;
    }

}

/* ========================================
   WORKSセクション（ページ内） - レスポンシブ
======================================== */
@media screen and (max-width: 1024px) {
    .works-section-page {
        padding: 80px 0;
    }
    
    .works-section-page .section-header {
        margin-bottom: 40px;
    }
    
    .works-section-page .works-grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .works-section-page .works-item-large {
        grid-column: 1 / -1;
    }
    
    .works-section-page .works-item-large-right {
        grid-column: 1 / -1;
    }
    
    .works-section-page .works-item-group {
        display: contents;
    }
    
    .works-note {
        font-size: 15px;
        margin: 40px 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .works-section-page {
        padding: 60px 0;
    }
    
    .works-section-page .section-header {
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .works-section-page .menu-header {
        gap: 5px;
    }
    
    .works-section-page .works-grid {
        display: block;
        gap: 30px;
    }
    
    .works-section-page .works-item-large,
    .works-section-page .works-item-large-right,
    .works-section-page .works-item-medium,
    .works-section-page .works-item-small {
        height: auto;
        margin: 20px auto;
    }
    
    .works-section-page .works-overlay {
        padding: 15px;
        font-size: 12px;
    }
    
    .works-section-page .works-tag {
        right: 15px;
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .works-note {
        font-size: 14px;
        margin: 30px 20px 25px;
        text-align: center;
        line-height: 1.6;
    }
    
    .works-section-page .works-button-wrapper {
        margin-top: 30px;
    }
    
    .works-section-page .works-view-all {
        padding: 12px 40px;
        font-size: 14px;
    }
}

/* ========================================
   共通調整
======================================== */

/* コンテナの調整 */
@media screen and (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

/* 横スクロール防止 */
@media screen and (max-width: 767px) {
    section {
        overflow: hidden;
    }
}

/* タッチデバイス向けのホバー効果無効化 */
@media (hover: none) and (pointer: coarse) {
    .menu-circle:hover {
        transform: none;
    }
    
    .works-item:hover .works-overlay {
        opacity: 0;
    }
    
    .breadcrumb-item:hover {
        color: #AAAAAA;
    }
}