@charset "UTF-8";

.background{
    background-image: url("../images/background.png"); 
    background-repeat: repeat; 
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}
.header_inner{
    display: flex;
    justify-content: space-between;
    padding-right: 7.8%;
    padding-left: 6.2%;
    margin-top: 77px;
}
#header{
    position: relative;
    z-index: 9999;
  }
.header_nav_list{
    display: flex;
    gap: 55px;
}
.logo{
    width: 110px;
    top: 77px;
    left: 4.2%;
    z-index: 200;
}
.logo a{
    position: fixed;
  }
.header_nav_item{
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 17px;
}
/* ハンバーガーメニュー pcサイズでは消しておく */
.hamburger, .header_nav-sp {
    display: none;
}

.title_works{
    position: relative;
    width: 204px;
    height: 56px;
    margin: 166px auto 176px;
}
.section_title{
    font-size: 40px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    letter-spacing: 0.1em;
    text-align: left;
}
.section_title span{
    color: #8AC1B9;
}
.section_subtitle{
    font-size: 17px;
    text-align: right;
    align-items: end;
}
.title_works div{
    position: absolute;
    top: 100%;
    left: 55%;
    width: 70px; 
    height: 2px; 
    background-color: #353B3F; 
    transform-origin: 0% 0%;
    transform: rotate(-45deg); 
}

.works_list_container{
    max-width: 1250px;
    padding: 0 100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.works_list_container li{
    width: 60%;
    max-width: 31%;
}
/* ホバーすると画像が拡大 */
.work_wrap{
    overflow: hidden;
    width: 100%;
}
.work_wrap :hover  .works_img_1 img {
    transform: scale(1.2,1.2); 
    transition: transform 0.3s ease-in-out;
}
.work_wrap :hover  .works_img_2 img {
    transform: scale(1.2,1.2); 
    transition: transform 0.3s ease-in-out;
}
.work_wrap :hover  .works_img_3 img {
    transform: scale(1.2,1.2); 
    transition: transform 0.3s ease-in-out;
}

.work_wrap a{
    position: relative;
}
.works_img_1{
    width: 80%;
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
.works_img_2{
    width: 65%;
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
.works_img_3{
    width: 75%;
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
#circle{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin-bottom: 27px;
}
.circle_corlor01{
    background-color: #F2EBEC;
}
.circle_corlor02{
    background-color: #938279;
}
.circle_corlor03{
    background-color: #F4D798;
}
.circle_corlor04{
    background-color: #F4E3B3;
}
.circle_corlor05{
    background-color: #EAD3D8;
}
.circle_corlor06{
    background-color: #fff;
}
.circle_corlor07{
    background-color: #F2E9DA;
}
.circle_corlor08{
    background-color: #B3C9C3;
}
.circle_corlor09{
    background-color: #72A09A;
}
/* タイトル */
.w_desc_title{
    font-size: 17px;
    letter-spacing: 0.025em;
    margin: 0 0 7px 20px;
}
.w_tag{
    font-size: 14px;
    color:#fff;
    padding: 7px 10px 7px 10px;
    background-color: #5F8E8A;
    border-radius: 4px;
    margin: 0 0 100px 20px;
    width: fit-content;
}

/* ボタン ホバーで色変換・矢印右へ */
.btn{
    text-align: center;
    margin-top: 150px;
}
.btn_arrow{
	position: relative;
	border: 1px solid #353B3F;
    border-radius: 9999px;
    padding: 19px 70px;
    display: inline-block;
    text-align: center;
    color: #353B3F;
    font-size: 16px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    letter-spacing: 0.1em;
    outline: none;
    transition: all .2s linear;
}
.btn_arrow:hover{
	background:#235A91;
	color:#fff;
}
.btn_arrow::before{
	content:"";
	position: absolute;
	top:50%;
	right:-50px;
	width:100px;
	height:1px;
	background:#353B3F;
    transition: all .2s linear;
}
.btn_arrow::after{
	content:"";
	position: absolute;
    top: 33%;
    right: -45px;
	width:1px;
	height:10px;
	background: #353B3F;
    transform:skewX(45deg);
    transition: all .2s linear;
}
.btn_arrow:hover::before{
	right:-70px;
}
.btn_arrow:hover::after{
	right:-65px;
}

/* ここからworks詳細ページ */
.section_title_works{
    font-size: 40px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 160px 50px 206px 0;
}
.section_title_works span{
    color: #8AC1B9;
}
.works_detail{
    max-width: 1300px;
    margin: auto;
}
.works_detail_container{
    display: flex;
    max-width: 1050px;
    padding: 0 30px;
    margin: auto;
}

.img_detail{
    min-width: 320px;
    max-width: 400px;
    width: 100%;
}
.img_detail_wrap{
    position: relative;
    margin: 20px;
}
.img_detail_wrap02{
    position: relative;
    margin: 40px 60px 60px;
}

.img_detail_01{
    width: 80%;
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
#detail_circle{
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.works_desc{
    max-width: 55%;
}
.desc_consept_area{
    max-width: 59%;
    margin-left: auto;
}
.w_d_tag{
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 19px;
    letter-spacing: 0.025em;
    color: #919191;
    padding-left: 22px;
    margin-bottom: 13px;
}
.desc_title{
    font-size: 24px;
    padding: 2px 0 2px 13px;
    border-left: #235A91 solid 9px;
    margin-bottom: 65px;
}
.desc_title span{
    letter-spacing: 0.05em;
}
.desc_list{
    display: flex;
}
.desc_item{
    width: 150px;
}
.desc_item li{
    border-top: #595959 solid 1px;
}
.desc_item li:last-child{
    border-bottom: #595959 solid 1px;
}

.text01_height {
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 15px;
    letter-spacing: 0.05em;
}
.text01 {
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 15px;
    letter-spacing: 0.05em;
}
.text02{
    height: 50px;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 50px;
}
.text03{
    height: 50px;
    font-size: 15px;
    text-align: center;
    line-height: 50px;
}
.text03_height{
    height: 50px;
    font-size: 15px;
    text-align: center;
    line-height: 50px;
}
.sp1024_only{
    display: none;
}

.desc_item_content{
    width: 485px;
    vertical-align: middle;
}
.desc_item_content li{
    border-top: #BCBCBC solid 1px;
}
.desc_item_content li:last-child{
    border-bottom: #BCBCBC solid 1px;
}
.content01_height{
    height: 64px;
    line-height: 1.4;
    font-size: 16px;
    padding: 8px 0 8px 13px;
    align-content: center;
}
.content01{
    height: 64px;
    line-height: 1.4;
    font-size: 16px;
    padding: 8px 0 8px 13px;
    align-content: center;
}
.content02_height{
    height: 50px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 50px; 
    padding-left: 13px;
}
.content02{
    height: 50px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 50px; 
    padding-left: 13px;
}
.desc_consept{
    max-width: 545px;
    font-size: 16px;
    letter-spacing: 0.025em;
    line-height: 1.8;
    padding: 20px 15px 0 15px;
}
.desc_consept02{
    font-size: 16px;
    letter-spacing: 0.025em;
    line-height: 1.8;
    padding: 20px 15px 0 15px;
}
/* w01_PCモックアップ */
.moc_scroll_container {
    position: absolute !important;
    top: 21px !important;
    left: 198px !important;
    overflow-y: auto; /* 縦スクロールを有効に */
    height: 389px !important; 
    width: 603px !important;
}
.moc_scroll_container04{    
    position: absolute !important;
    top: 25px !important;
    left: 95px !important;
    height: 486px !important;
    width: 831px !important;
    z-index: 200;
}
.moc_scroll_container04sp{
    position: absolute !important;
    top: 46px !important;
    left: 5px !important;
    height: 450px !important;
    width: 260px !important;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.scroll-hint-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    position: absolute;
    top: 10px; /* 調整 */
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInOut 1.5s infinite alternate;
}
.scroll-hint-icon {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 0px) !important;
    box-sizing: border-box;
    width: 120px;
    height: auto;
    border-radius: 5px;
    transition: opacity .3s;
    opacity: 0;
    background: rgba(0, 0, 0, .7);
    text-align: center;
    padding: 20px 10px 10px 10px;
    filter: invert(1)  !important;
}
.js-scrollable.is-scrolling .scroll-hint-icon {
    display: none !important;
}
.js-scrollable {
    scrollbar-width: none; /* Firefox 用 */
    -ms-overflow-style: none; /* IE・Edge 用 */
}

.js-scrollable::-webkit-scrollbar {
    display: none; /* Chrome・Safari 用 */
}

@keyframes fadeInOut {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}

.moc_capture_pc{
    width: 100%;
}
.moc_area{
    position: relative;
    max-width: 1000px;
    /* padding: 0 100px; */
    margin: 100px auto 0;
}
/* w01_チャプター画像 */
.capture_pc01 {
    position: absolute;
    top: 1px;
    left: 160px;
    overflow: scroll;
    width: 602px;
    height: 397px;
}
.moc_capture_pc_img{
    width: 800px;
    margin: auto;
}
.shadow{
    position: absolute;
    width: 98%;
    bottom: -5px;
    mix-blend-mode: multiply;
    z-index: -1;
}
.shadow02{
    position: absolute; 
    transform: translateY(-60%);
    mix-blend-mode: multiply;
    z-index: -1;
}
.shadow03{
    position: absolute; 
    bottom: 109px;
    mix-blend-mode: multiply;
    z-index: -1;
}
.shadow04{
    position: absolute;
    width: 80%;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    mix-blend-mode: multiply;
    z-index: -1;
}
/* works02 */
.flex_area{
    display: flex;
    max-width: 1400px;
    padding: 0 100px;
    margin: auto;
}
.img_detail_b{
    min-width: 300px;
    max-width: 100%;
    width: 100%;
}
.works_detail_container_left{
    width: 50%;
}
.works_detail_container_right{
    padding-left: 64px;
}
.desc_list_margin{
    margin-top: 158px;
}
.moc_banner_sp{
    position: relative;
}
.capture_sp02, .capture_sp03, .capture_sp05, .capture_sp06{
    position: absolute;
    left: 2%;
    width: 96%;
    top: 54%;
    transform: translateY(-50%);
}
.moc_capture_sp_img{
    width: 100%;
    z-index: 100;
}
/* works03・06*/
.img_detail_02{
    width: 65%;
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}

/* works05*/
.img_detail_03 img{
    width: 75%;
    border-radius: 9px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
/* works07・04 */
/* .moc_area_2{
    position: relative;
    max-width: 1300px;
    margin: 100px auto;
    height: 710px;
} */
/* w04_ノートPCチャプター画像 */
/* .capture_pc02 {
    position: absolute;
    top: 8px;
    right: 69px;
    overflow: scroll;
    width: 703px;
    height: 436px;
} */
 .capture_sp_pc_img{
    width: 270px;
 }
 /* work04 07 08*/
 .moc_area_3,.moc_area_5{
    position: relative;
    max-width: 1300px;
    height: 850px;
    margin: auto;
}
.capture_pc_p{
    position: absolute;
    top: 8px;
    left: 53px;
    overflow: scroll;
    width: 832px;
    height: 488px;
    z-index: 15;
}
.moc_capture_pc_img_p{
    width: 882px;
    position: absolute;
}
.moc_capture_pc_img_p img{
    position: absolute;
}
.moc_capture_pc08{
    margin: 100px 70px 0;
}
.moc_capture_sp02{
    position: absolute;
    right: 50px;
    top: 310px;
}
.moc_capture_pc_img08{
    width: 73%;
}
.capture_sp_p {
    position: absolute;
    top: 21px;
    left: 0;
    overflow: scroll;
    margin: 25px 5px 5px 5px;
    width: 260px;
    height: 450px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}
/* work09 */
.moc_area_4{
    max-width: 800px;
    margin: 80px auto 0;
}
.img_detail_04{
    max-width: 330px;
    min-width: 270px;
    width: 100%;
}
.img_detail_05{
    margin: 7px 28px;
}
.img_detail_05 img{
    overflow: hidden;
}
.moc_capture_card img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
.moc_04_768_sp-only{
    display: none;
}
.moc_04sp_768_sp-only{
    display: none;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
/* スクロール配置指定 */
.scroll_arrow02 div{
    position: absolute;
    right: 309px;
    top: 30px;
    writing-mode: vertical-rl;
}
.scroll_arrow08 div{
    position: absolute;
    right: 300px;
    top: 30px;
    writing-mode: vertical-rl;
}

/* トップへボタン */
html {
    scroll-behavior: smooth;
}
.toTop {
    position: fixed;
    bottom: 60px;
    right: 15px;
    z-index: 200;
}
.toTop img {
    width: 77px;
    padding-bottom: 20px;
}
.toTop_text {
    font-size: 16px;
    letter-spacing: 0.1em;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    transform: rotate(-90deg);
}
  /* フッター */
footer {
    position: relative;
    height: 600px;
}

.footer_back_move_1 {
    position: absolute;
    right: 221px;
    bottom: 375px;
    width: 147px;
    z-index: 11;
    animation: rotateYInfinite 2s linear infinite;
    transform-origin: center;
  }
  @keyframes rotateYInfinite {
    0% {
      transform: rotateY(0deg);
    }
    50% {
      transform: rotateY(360deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }
  .footer_back_move_2 {
    position: absolute;
    right: 442px;
    bottom: 226px;
    width: 151px;
    z-index: 6;
    animation: rotateYPause 3s linear infinite; 
    transform-origin: center; 
  }
  @keyframes rotateYPause {
    0% {
      transform: rotate(0deg);
    }
    60% {
      transform: rotate(360deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .bg-area {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1500px;
    z-index: 5;
}

.footer_container {
    position: absolute;
    bottom: 16%;
    right: 56%;
    max-width: 800px;
    z-index: 100;
}
.footer_logo {
    width: 110px;
    left: 16.6%;
    margin-bottom: 38px;
}
.footer_nav_list {
    display: flex;
    gap: 53px;
}
.footer_nav_item {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 16px;
}
.copy {
    position: absolute;
    top: 91%;
    right: 9%;
    font-size: 13px;
    letter-spacing: 0.1em;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    z-index: 20;
}


 .scroll_arrow span{
    font-size: 14px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    transform: rotate(-90deg);
 }

 .scroll_arrow::before{
	content:"";
	position: absolute;
	width:1px;
	height:90px;
	background:#353B3F;
 }
 .scroll_arrow::after{
	content:"";
	position: absolute;
    top: 92px;
    left: -6;
	width:1px;
	height:10px;
	background: #353B3F;
    transform:skewX(45deg);
    
}
.scroll_left{
    top: 100px;
}
#modal_area{
    display: none;
}
    
@media screen and (max-width: 1300px) {
    .btn{
        margin: 100px 0;
    } 
    .toTop img {
        width: 60px;
        padding-bottom: 26px;
    }
    .toTop_text {
        font-size: 14px;
    }
    .desc_list_margin{
        margin-top: 73px;
    }

    /* 詳細概要リスト３行に変更 */
    .text01_height{
        height: 93px;
        line-height: 96px;
    }
    .content01_height{
        height: 77px;
    }
    .moc_area_3,.moc_area_5 {
        max-width: 1024px;
        height: 850px;
    }
    .moc_scroll_container04{    
        height: 352px !important;
        width: 609px !important;
    }
    .moc_scroll_container04sp{
        top: 40px !important;
        left: 5px !important;
        height: 392px !important;
        width: 225px !important;
        border-bottom-left-radius: 29px;
        border-bottom-right-radius: 29px;
    }
    
    /* .capture_sp02, .capture_sp03, .capture_sp05, .capture_sp06 {
        right: 46px;
        top: 2px;
        width: 528px;
        /* height: 336px; */
    
    .moc_capture_pc_img_p {
        width: 658px;
    }
    .capture_pc_p {
        top: 5px;
        left: 50px;
        width: 618px;
        height: 358px;
    }
    .capture_sp_pc_img {
        width: 235px;
    }
    .moc_capture_sp02 {
        top: 180px;
    }
    /* .capture_sp03 {
        top: 25px;
        left: -35px;
        width: 231px;
        height: 400px;
    } */
    .capture_sp_p {
        top: 15px;
        left: -1px;
        width: 227px;
        height: 393px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    .shadow03 {
        bottom: 298px;
        width: 63%;
    }
}

@media screen and (max-width: 1024px) {
    .logo img{
        width: 90px;
    }
    .section_title_works {
        font-size: 35px;
        margin: 130px 50px 160px 0;
    }
    .desc_title {
        font-size: 20px;
    }
    .w_d_tag {
        font-size: 17px;
    }
    .text01_height {
        font-size: 15px;
    }
    .text01 {
        font-size: 15px;
    }
    .content01_height{
        font-size: 15px;
    }
    .content01{
        font-size: 15px;
    }
    .content02{
        font-size: 15px;
    }
    .content02_height{
        height: 64px;
        font-size: 16px;
        line-height: 1.4;
        padding: 8px 0 8px 13px;
        align-content: center;
    }
    .sp1024_only{
        display: block;
    }
    .text03_height{
        height: 80px;
        font-size: 15px;
        line-height: 50px;
        align-content: center;
    }
    .desc_consept_area{
        max-width: 63%;
        margin: 0 auto 40px;
    }
    .desc_consept,.desc_consept02 {
        padding: 28px 0 0 ;
        max-width: 100%;
    }
    .works_detail_container {
        padding: 0 40px;
        max-width: 1300px;
    }
    .moc_scroll_container {
        top: 18px !important;
        left: 106px !important;
        height: 316px !important;
        width: 487px !important;
    }
    .moc_scroll_container04{    
        top: 15px !important;
        left: 66px !important;
        height: 259px !important;
        width: 440px !important;
    }
    .moc_scroll_container04sp{
        top: 32px !important;
        left: 4px !important;
        height: 317px !important;
        width: 183px !important;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 23px;
    }
    .moc_area {
        max-width: 700px;
    }
    .capture_pc01 {
        top: 0px;
        left: 66px;
        width: 488px;
        height: 318px;
    }
    .img_detail_wrap {
        margin: 7px 28px;
    }
    .img_detail_wrap02 {
        margin: 10px 30px 30px;
    }
    .capture_sp_pc_img {
        width: 185px;
    }
    .capture_pc02 {
        right: 28px;
        top: 0px;
        width: 393px;
        height: 255px;
    }
    .moc_capture_pc_img {
        width: 650px;
        margin: auto;
    }
    .shadow04 {
        width: 91%;
    }
    .moc_capture_sp {
        top: 112px;
        left: 55px;
    }
    .moc_capture_notepc {
        position: absolute;
        right: 18px;
    }
    /* moc_pc_sp */
    .moc_area_3, .moc_area_5 {
        max-width: 768px;
        height: 435px;
    }
    .moc_capture_pc08 {
        margin: 100px 50px 0;
    }
    .capture_pc02{
        right: 46px;
        top: 2px;
        width: 528px;
        height: 336px;
    }
    .moc_capture_pc_img_p {
        width: 473px;
    }
    .moc_capture_pc {
        width: 100%;
    }
    .capture_pc_p {
        top: -3px;
        left: 25px;
        width: 444px;
        height: 261px;
    }
    .capture_sp_pc_img {
        width: 190px;
    }
    .moc_capture_sp02 {
        top: 88px;
        right: 47px;
    }
    /* .capture_sp03 {
        top: 25px;
        left: -35px;
        width: 231px;
        height: 400px;
    } */
    .capture_sp_p {
        top: 7px;
        left: -2px;
        width: 184px;
        height: 317px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }
    .shadow03 {
        bottom: 38px;
        width: 473px;
    }
    .flex_area {
        max-width: 780px;
        padding: 0 60px;
    }
    .desc_list_margin {
        margin-top: 50px;
    }
    .works_detail_container_right {
        padding-left: 33px;
    }
    .text01_height {
        height: 106px;
        line-height: 110px;
    }
    .content01_height {
        height: 90px;
    }
    .moc_area_4 {
        max-width: 600px;
    }
    .scroll_arrow02 div {
        left: 77px;
        top: 22px;
    }
    footer {
        height: 400px;
    }
    .footer_back_move_1 {
        right: 133px;
        bottom: 225px;
        width: 88px;
    }
    .footer_back_move_2 {
        right: 266px;
        bottom: 137px;
        width: 88px;
    }
    .bg-area {
        width: 900px;
    }
    .footer_container {
        bottom: 14%;
        right: 42%;
    }
    .footer_logo {
        width: 100px;
        left: 16.6%;
        margin-bottom: 30px;
    }
    .w_desc_title{
        font-size: 16px;
        line-height: 1.2;
        margin: 0 0 7px 10px;
    }
    .w_tag{
        margin: 0 0 100px 10px;
    }
    .works_list_container{
        padding: 0 70px;
    }
    .toTop {
        bottom: 45px;
    }
}
@media screen and (max-width: 880px) {
    .works_desc {
        max-width: 53%;
    }
}

@media screen and (max-width: 768px) {
    #header {
    position: fixed;
    top: 20px;
    left: 0;
    z-index: 9999;
    width: 100%;
    }

    /* ハンバーガーメニュー */
    .header_nav {
    display: none;
    }
    .hamburger {
    display: block;
    width: 30px;
    height: 30px;
    position: fixed;
    right: 20px;
    top: 60px;
    cursor: pointer;
    z-index: 9999;
    }
    .hamburger span::before,
    .hamburger span::after {
    content: "";
    position: absolute;
    right: 0;
    width: 30px;
    height: 1px;
    background-color: #353b3f;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
    }
    .hamburger span::before {
    top: 0;
    }
    .hamburger span::after {
    bottom: 17px;
    width: 20px;
    }

    .open span::before {
    top: 50%;
    left: 0;
    transform: rotate(45deg);
    background-color: #293d54;
    height: 2px;
    }

    .open span::after {
    bottom: 50%;
    width: 30px;
    left: 0;
    transform: rotate(-45deg);
    background-color: #293d54;
    height: 2px;
    }
    .open span {
    position: fixed;
    }
    .header_nav-sp {
    position: fixed;
    z-index: 9997;
    width: 70vw;
    height: 90vh;
    top: 0;
    right: 0;
    border-bottom-left-radius: 35px;
    background-color: #364666;
    opacity: 85%;
    }
    .header_nav_list {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 55px;
    }
    .header_nav_item {
    color: #fff;
    font-size: 18px;
    margin-left: 75px;
    letter-spacing: .025em;
    }

    .logo img {
    width: 70px;
    }
    .header_inner {
    margin-top: 23px;
    }



    .section_title_works {
        font-size: 25px;
        margin: 110px 0 120px 0;
    }
    .header_inner{
        margin-top: 23px;
    }
    .works_list_container li{
        max-width: 45%;
    }
    .works_list_container{
        padding: 0 80px;
    }
    .header_nav{
        display: none;
    }
    .img_detail_wrap {
        display: none;
    }
    .img_detail_wrap02 {
        display: none;
    }
    .works_detail_container {
        flex-direction: column;
        max-width: 622px;
        padding: 0 80px;
        margin: auto;
    }
    .desc_consept_area {
        max-width: 60%;
    }
 
    .scroll-hint{
        display: none !important;
    }
    .moc_area {
        position: absolute;
        top: 429px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        margin: 0;
    }
    .shadow04 {
        width: 100%;
        bottom: -2px;
    }
    .capture_pc01 {
        top: -7px;
        left: 3px;
        width: 264px;
        height: 171px;
    }
    .moc_capture_pc_img {
        width: 350px;
    }
    .shadow {
        width: 107%;
        bottom: -2px;
    }
    .works_desc {
        max-width: 100%;
    }
    .desc_title {
        margin-bottom: 400px;
    }
    .moc_area_3 {
        max-width: 424px;
        height: 100px;
        top: -789px;
    }
    .works_detail{
        position: relative;
    }
    .moc_area_5 {
        position: absolute;
        top: 72px;
        left: 50%;
        transform: translateX(-212px);
    }
    .moc_capture_pc08 {
        position: absolute;
        top: -30px;
        left: 0;
    }
    .moc_capture_pc_img_p {
        width: 272px;
    }
    .capture_pc_p {
        top: -5px;
        left: -30px;
        width: 252px;
        height: 144px;
    }
    .moc_capture_sp02 {
        top: 176px;
        left: 302px;
        z-index: 20;
    }
    .capture_sp_pc_img {
        width: 190px;
    }
    .capture_sp_p {
        top: -13px;
        left: -4px;
        width: 71px;
        height: 122px;
        border-bottom-left-radius: 9px;
        border-bottom-right-radius: 9px;
    }
    .capture_sp_pc_img {
        width: 73px;
    }
    .shadow02 {
        position: absolute;
        width: 72px;
        transform: translateY(-84%);
        mix-blend-mode: multiply;
        z-index: -1;
    }
    .shadow03 {
        bottom: -230px;
        width: 269px;
    }
    .flex_area {
        max-width: 480px;
        padding: 0 35px;
        flex-direction: column;
        position: relative;
    }
    .moc_capture_sp_img{
        display: none;
    }
    .img_detail_04{
        display: none;
    }
    .desc_list_margin {
        margin-top: 383px;
    }
    .shadow{
        display: none;
    }
    .section_title_works {
        margin: 110px 0 100px 0;
    }
    .works_detail_title{
        position: absolute;
        top: -20px;
    }
    .works_detail_container_right {
        padding-left: 0;
    }
    .works_detail_container_left {
        width: 100%;
    }
    .moc_04_768_sp-only{
        display: block;
        position: absolute;
        top: 8px;
        left: 10px;
        width: 252px;
        /* height: 46px; */
        z-index: 20;
    }
    .moc_04sp_768_sp-only{
        display: block;
        position: absolute;
        top: 10px;
        left: 1px;
        width: 71px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }
    
    

    .capture_sp02{
        position: absolute;
        left: 50%;
        top: -744px;
        width: 90%;
        transform: translateX(-50%);
    }
    .capture_sp03{
        position: absolute;
        left: 50%;
        width: 65%;
        top: -773px;
        transform: translateX(-50%);
    }
    .capture_sp05{
        position: absolute;
        left: 50%;
        width: 86%;
        top: -679px;
        transform: translateX(-50%);
    }
    .capture_sp06{
        left: 50%;
        width: 65%;
        top: -657px;
        transform: translateX(-50%);
    }
    .moc_area_3 {
        max-width: 424px;
        top: -780px;
    }
    .moc_area_4 {
        max-width: 450px;
        min-width: 320px;
        position: absolute;
        top: 315px;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer_back_move_1 {
        right: 107px;
        bottom: 408px;
        width: 73px;
        }
    .footer_back_move_2 {
        right: 216px;
        bottom: 336px;
        width: 72px;
    }
    .bg-area picture img{
        height: 530px;
        width: auto;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 5;
    }
    .btn{
        margin: 130px 0 175px;
    }
    .btn_arrow{
        padding: 14px 55px;
        font-size: 15px;
    }
    .btn_arrow::before{
        right: -46px;
        width: 80px;
    }
    .btn_arrow::after{
        top: 30%;
        right: -42px;
    }
    .footer_container {
        position: absolute;
        display: flex;
        bottom: 22%;
        right: 50%;
        transform: translateX(50%);
    }
    .footer_nav_item {
        font-size: 14px;
      }
    .footer_nav{
        max-width: 136px;
        margin-left: 45px;
    }
    .footer_nav_list {
        width: 148px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 44px;
    }
    .copy {
        width: 194px;
        right: 50%;
        transform: translateX(50%);
        font-size: 9px;
    }
    .toTop img {
        width: 45px;
        padding-bottom: 20px;
    }
    .toTop_text {
        font-size: 11px;
    }

   
    #modal_area{
        display: block;
        position: relative;
        margin: auto;
        width: 100%;
    }
    .modal_text{
        text-align: center;
        font-size: 12px;
        font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    }
    .modal {
        padding: 70px 0;
      }
      
    .inner {
        width: min(100%, 1120px);
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* モーダルを開くボタン */
    .modal__trigger {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 45px;
        left: 50%;
        width: 180px;
        height: 35px;
        background: #E0D8A5;
        border-radius: 8px;
        margin: auto;
        cursor: pointer;
        transform: translate(-50%,-50%);
    }
    .modal__trigger_sp{
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 100px;
        left: 50%;
        width: 180px;
        height: 35px;
        background: #8AC1B9;
        color: #fff;
        border-radius: 8px;
        margin: auto;
        cursor: pointer;
        transform: translate(-50%,-50%);

    }
    
    .modal__trigger:nth-child(n + 2) {
    margin-top: 15px;
    }
    
    /* モーダル本体 */
    .modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    }
    
    .modal__layer {
    position: relative;
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
    }
    .modal__content{
    overflow: scroll; 
    }
    .modal__content::-webkit-scrollbar {
    display: none;
    }
    .modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(calc(70% - 40px), 1000px);
    height: calc(75% - 40px);
    padding: 30px;
    }
    
    .modal__inner {
    overflow-y: scroll;
    height: 100%;
    }
    
    /* モーダルを閉じるボタン */
    .modal__close {
    position: absolute;
    top: -14px;
    right: -7px;
    width: 44px;
    height: 44px;
    /* background: rgba(50, 50, 50, 1); */
    cursor: pointer;
    transition: opacity .6s;
    }
    
    .modal__close:hover {
    opacity: .6;
    }
    
    .modal__close:before,
    .modal__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
    }
    
    .modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
    }
    
    .modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
    }
            
}
@media screen and (max-width: 643px){
    .moc_area_3 {
        top: -817px;
    }
    /* .moc_area_5 {
        top: -1132px;
    } */
}
/* @media screen and (max-width: 602px){
    .moc_area_5 {
        top: -1170px;
    }
}
@media screen and (max-width: 580px){
    .moc_area_5 {
        top: -1155px;
    }
}
@media screen and (max-width: 496px){
    .moc_area_5 {
        top: -1225px;
    }
} */

@media screen and (max-width: 480px){
    .header_nav_item {
        font-size: 17px;
        margin-left: 53px;
    }
    .section_title_works {
        font-size: 19px;
        margin: 90px 0 80px 0;
    }
    .w_d_tag {
        font-size: 14px;
    }
    .desc_title {
        font-size: 17px;
    }
    .logo img{
        width: 85px;
    }
    .w_tag {
        margin: 0 0 70px 10px;
    }
    .desc_consept_area {
        max-width: 86%;
    }
    .works_detail_container {
        max-width: 328px;
        padding: 0 20px;
    }
    .title_works{
        width: 150px;
        height: 50px;
        margin: 77px auto 65px;
    }
    .section_title{
        font-size: 27px;
    }
    .section_subtitle{
        font-size: 12px;
    }
    .title_works div{
        top: 74%;
        left: 54%;
        width: 44px;
        height: 1px;
    }
    .works_list_container{
        padding: 0 65px;
        flex-direction: column;
        margin: auto;
    }
    .works_list_container li{
        width: 100%;
        max-width: 300px;
    }
    #circle{
        margin-bottom: 27px;
    }
    .works_detail_container {
        max-width: 500px;
        padding: 0 20px;
    }
    .capture_sp02 {
        position: absolute;
        left: 50%;
        width: 90%;
        top: -783px;
        transform: translateX(-50%);
    }
    /* .capture_sp02 img {
        position: absolute;
        top: -715px;
    } */
    .capture_sp03 {
        position: absolute;
        left: 50%;
        width: 60%;
        top: -735px;
        transform: translateX(-50%);
    }
    .capture_sp05 {
        position: absolute;
        left: 50%;
        width: 86%;
        top: -651px;
        transform: translateX(-50%);
    }
    .capture_sp06 {
        position: absolute;
        left: 50%;
        width: 70%;
        top: -677px;
        transform: translateX(-50%);
    }
    .desc_list_margin {
        margin-top: 390px;
    }
    .desc_consept,.desc_consept02 {
        font-size: 15px;
    }
    .content01 {
        font-size: 14px;
    }
    .content01_height {
        font-size: 14px;
    }
    .moc_scroll_container {
        top: 10px !important;
        left: 39px !important;
        height: 150px !important;
        width: 233px !important;
    }
    .scroll-hint-icon:before {
        width: 25px !important;
        height: 25px !important;
    }
    .scroll-hint-icon {
        width: 63px !important;
        padding: 10px 5px 5px 5px !important;
    }
    .scroll-hint-icon:after {
        width: 34px !important;
        height: 14px !important;
        top: 10px !important;
    }
    .moc_area_3 {
        /* max-width: 375px; */
        top: -784px;
        left: 50%;
        transform: translateX(-50%);
    }
    .moc_area_5 {
        top: 40px;
    }
    .moc_capture_pc_img {
        width: 312px;
    }
    .capture_pc01 {
        top: -8px;
        left: -2px;
        width: 236px;
        height: 153px;
    }
    .moc_area {
        top: 354px;
    }
    .desc_title {
        margin-bottom: 350px;
    }
    .moc_area_4 {
        top: 240px;
    }
    .modal__container {
        width: min(calc(85% - 40px), 1000px);
        height: calc(85% - 40px);
    }
    .footer_logo {
        width: 70px;
        left: 16.6%;
        margin-bottom: 38px;
    }
    .footer_nav_item {
        font-size: 13px;
    }
    .bg-area picture img{
        height: 327px;
    }
    .footer_back_move_1 {
        right: 66px;
        bottom: 252px;
        width: 45px;
    }
    .footer_back_move_2 {
        right: 133px;
        bottom: 208px;
        width: 45px;
    }
    .btn{
        margin: 77px 0 0;
    }
    .btn_arrow{
        padding: 10px 45px;
        font-size: 14px;
    }
    .btn_arrow::before{
        right: -20px;
        width: 55px;
    }
    .btn_arrow::after{
        top: 23%;
        right: -15px;
    }
    .btn_arrow:hover::before{
        right:-35px;
    }
    .btn_arrow:hover::after{
        right:-31px;
    }
}
@media screen and (max-width: 430px) {
    .capture_sp06 {
        width: 70%;
        top: -677px;
    }
    .moc_area_3 {
        /* max-width: 375px; */
        top: -814px;
    }
    .capture_sp06 {
        top: -624px;
    }
}
@media screen and (max-width: 380px) {
    .logo img{
        width: 70px;
    }
    .works_list_container{
        padding: 0 50px;
    }
    .w_tag{
        margin: 0 0 30px 10px;
    }
    #circle{
        margin-bottom: 15px;
    }
    .desc_list_margin {
        margin-top: 317px;
    }
    .capture_sp02 {
        top: -741px;
    }
    .capture_sp03 {
        width: 65%;
        top: -760px;
    }
    .capture_sp05 {
        top: -638px;
    }
    .capture_sp06 {
        width: 70%;
        top: -624px;
    }
    .btn_arrow{
        font-size: 12px;
    }
    .moc_area_3 {
        top: -765px;
        left: 44%;
    }
    .modal__container {
        width: min(calc(95% - 40px), 1000px);
        height: calc(85% - 40px);
    }
    .footer_container {
        bottom: 17%;
    }

    .footer_nav{
        margin-left: 45px;
    }
    .footer_nav_list {
        width: 136px;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 44px;
    }
    .toTop {
        right: 10px;
    }
    .toTop img {
        width: 30px;
        padding-bottom: 20px;
    }
    .toTop_text {
        font-size: 9px;
    }
}

