@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    margin: 0;
    padding: 0;
    width: 100%;
}

header{
    width: 100%;
}

body{
    background-color: #a8b8bc;
}

header .header-top{
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}


.top-image{
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 2s ease;
    object-fit: cover;
    overflow: hidden;
}

@media(max-width:768px){
    .top-image{
        height: 100vh;
        width: auto;
        object-fit: cover;
        display: block;
        margin: 0 auto;
    }
}

.top-image.active{
    opacity: 1;
}

.header-menu{
    position: fixed;
    top: 0;
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    z-index: 109;
}

.header-menu-item{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.header-menu-logo img{
    display: flex;
    width: auto;
    height: 100%;
    object-fit: cover;
}

.header-menu-item ul{
    display: flex;
}

.header-menu-item ul li{
    margin-right: 30px;
    list-style: none;
}

.header-menu-item ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}

@media(max-width:768px){
    .header-menu .header-menu-item{
        display: none;
    }
    .header-menu-logo img{
        height: 60%;
    }
}

.humburger{
    z-index: 109;
}

.humburger.active{
    position: absolute;
    right: 0;
}

.humburger-menu{
    position: absolute;
    right: -100vw;
    transition:right 0.3s ease;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media(max-width:768px){
    .humburger-menu{
        position: absolute;
        right: 0px;
    }
}

.humburger-icon{
    position: fixed;
    display: flex;
    flex-direction: column;
    margin-right: 50px;
    margin-top: 100px;
    z-index: 110;
}

.humburger-icon:hover{
    cursor: pointer;
}

.humburger-icon span{
    width: 30px;
    height: 2px;
    background-color: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.humburger-icon.active span:nth-child(1){
    transform: rotate(45deg) translateY(14px);
}

.humburger-icon.active span:nth-child(2){
    opacity: 0;
}

.humburger-icon.active span:nth-child(3){
    transform: rotate(-45deg) translateY(-14px);
}

@media(min-width:769px){
    .humburger-icon{
        display: none;
    }
}

.toggle-menu{
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #242C2E;
    right: -100%;
    transition: right 0.3s ease-in-out;
}

.toggle-menu ul{
    margin-top: 100px;
    position: absolute;
    right: 30px;
    justify-content: center;
}

.toggle-menu ul li{
    right: 0;
    list-style: none;
    margin-top: 40px;
}

.toggle-menu ul li a{
    text-decoration: none;
    color: #fff;
}
  
  .toggle-menu.active {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 102;
    transition: right 0.3s ease-in-out;
}

.insta{
    transform: translateY(-30%);
    width: 50px;
    height: 50px;
    justify-content: center;
}

.insta img{
    width: 100%;
    height: 100%;
}

.header-menu .header-menu-item ul li{
    position: relative;
    display: inline-block;
}


.header-menu .header-menu-item ul li {
    position: relative;
}

.header-menu .header-menu-item ul li::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 20px;
    height: 2px;
    background-color: #fff;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.header-menu .header-menu-item ul li:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.header-menu .header-menu-item ul li:not(:hover)::after{
    transform-origin: right;
    transform: scaleX(0);
}

.toggle-menu ul li{
    position: relative;
}

.toggle-menu ul li::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.toggle-menu ul li:hover::after{
    transform: scale(1);
    transform-origin: left;
}

.toggle-menu ul li:not(:hover)::after{
    transform: right;
    transform: scaleX(0);
}


/* スクロールダウン */

.container_02 {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

.container_02.active{
    display: none;
}
  
  .container_02 a:hover {
    opacity: 0.7;
  }
  
  .scroll-down_02 {
    position: relative;
    width: 200px;
    height: 200px;
    color: #fff;
    font-family: serif;
    text-decoration: none;
    opacity: 0.4;
  }
  
  .circle-text_02 {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
  }


  
  .circle-text_02 span {
    position: absolute;
    left: 50%;
    font-size: 16px;
    transform-origin: 0 100px;
  }
  
  .arrow_02 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
    animation: pulse_02 2s infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes pulse_02 {
    0%,
    100% {
      transform: translate(-50%, -50%) rotate(-45deg) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) rotate(-45deg) scale(1.1);
    }
  }


/* section_01 */
.section_01{
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.section_01-grp{
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin-top: 100px;
}

@media(max-width:1000px){
    .section_01-grp{
        margin-top: 100px;
    }
}

.section_01-title{
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2em;
    font-weight: 600;
    letter-spacing: 1px;
}

@media(max-width:1200px){
    .section_01-title{
        margin-left: 50px;
    }
}

.section_01-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_01 .content-text{
    max-width: 550px;
}

.section_01 .content-text{
    margin-top: 50px;
}



.content-text h3,
.content-text p{
    white-space: normal;
    overflow-wrap: break-word;
    font-optical-sizing: auto;
    font-family: "Cormorant Garamond", serif;
    font-style: normal;
}

.content-text h3{
    font-size: 1.15em;
    font-weight: 500;
    letter-spacing: 2.5px;
}

.content-text p{
    margin-top: 50px;
    font-size: 1.05em;
    font-weight: 500;
    letter-spacing: 2px;
}

@media(max-width:1250px){
    .section_01-content{
        display: flex;
        flex-direction: column;
    }

    .section_01 .content-text{
        max-width: 800px;
        width: 100%;
        padding: 0 50px;
    }
}


/* スライドショー */

.slideshows{
    position: relative;
    display: block;
    height: 1300px;
}


@media(max-width:1920px){
    .slideshows{
        height: 950px;
    }
}

@media(max-width:1300px){
    .slideshows{
        height: 1000px;
    }
}
@media(max-width:1200px){
    .slideshows{
        height: 800px;
    }
}

.slideshow {
    position: absolute;
    right: 0;
    max-width: 800px;
    width: 100%;
    margin: 150px auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    background:#000;
  }
  
  .slides {
    position: relative;
    height: 450px; 
  }

  @media(min-width:1280px){
    .slideshow{
        aspect-ratio: 3/2;
        max-width: 1000px;
    }
    .slides img{
        width: 100%;
        height: auto;
    }
  }


  .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 400ms ease, transform 600ms ease;
    pointer-events: none;
  }
  .slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  
  .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: background 150ms ease, transform 120ms ease;
  }
  .btn:hover { transform: translateY(-50%) scale(1.04); }
  .btn:active { transform: translateY(-50%) scale(0.98); }
  .prev { left: 12px; }
  .next { right: 12px; }
  
  .dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
  }
  .dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    padding: 0;
  }
  .dots button.active {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.95);
  }
  


/* section_02 */

.section_02{
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.section_02-grp{
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.section_02-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.section_02 .content-text{
    max-width: 1200px;
    width: 100%;
    margin-top: 50px;
}

@media(max-width:1250px){
    .section_02-content{
        display: flex;
        flex-direction: column;
    }
    .section_02 .content-text{
        max-width: 800px;
        width: 100%;
        padding: 0 50px; }
}

@media(max-width:768px){
    .section_02 .content-text:nth-child(1){
        margin-top: -80px;
    }
}

/* WORKS */
.works{
    margin-top: 150px;
    position: relative;
    width: 100%;
    height: 450px;
}

.works img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.works .section_01-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

@media(max-width:1200px){
    .works .section_01-title{
        margin: 0;
        padding: 0;
    }
}

@media(max-width:768px){
    .works{
        width: 100%;
        height: 300px;
    }
}

/* gimgbox */

.imgbox{
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
  

.imgbox .imgbox-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: auto;
    z-index: 100;
}  

.imgbox .imgbox-img img{
    width: 100%;
    height: 100%;
}


.imgbox .imgbox-text{
    position: absolute;
    right: 0;
    top: 250px;
    width: 60%;
    height: auto;
    background-color: #fff;
    justify-content: center;
    align-items: cneter;
    text-align: left;
    z-index: 101;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.imgbox .imgbox-text p{
    width: 100%;
    padding: 50px;
    word-wrap: break-word;
    white-space: normal;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05em;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 2em;
}

@media(max-width:768px){
    .imgbox .imgbox-img{
        width: 100%;
    }

    .imgbox .imgbox-text{
        position: absolute;
        top: 380px;
        width: 85%;
    }
}
@media(max-width:690px){
    .imgbox .imgbox-text{
        position: absolute;
        top: 30%;
    }
}
@media(max-width:480px){
    .imgbox .imgbox-text{
        position: absolute;
        top: 12%;
    }
}
@media(max-width:380px){
    .imgbox .imgbox-text{
        position: absolute;
        top: 20%;
    }
}


/* online shop */

.onlineshop{
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
}

@media(max-width:900px){
    .onlineshop{
        margin-top: 500px;
    }
}
@media(max-width:580px){
    .onlineshop{
        margin-top: 580px;
    }
}
@media(max-width:510px){
    .onlineshop{
        margin-top: 680px;
    }
}
@media(max-width:500px){
    .onlineshop{
        margin-top: 800px;
    }
}
@media(max-width:450px){
    .onlineshop{
        margin-top: 350px;
    }
}

.onlineshop a{
    position: absolute;
    width: 50%;
    height: auto;
    z-index: 100;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

@media(max-width:768px){
    .onlineshop a{
        width: 80%;
    }
}

.onlineshop a img{
    opacity: 0.5;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
}

.onlineshop p{
    position: absolute;
    width: 350px;
    height: 80px;
    background-color: rgba(47, 11, 11, 0.918);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 101;
    font-size: 3em;
    font-family: "Cormorant Garamond", serif;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 10px;
    opacity: 0.9;
}

@media(max-width:500px){
    .onlineshop p{
        width: 200px;
        height: 50px;
        font-size: 2em;
    }
}

.onlineshop a img:hover{
    opacity: 1;
    transition: all 0.3s;
}

.onlineshop a:hover{
    box-shadow: 0 0 0 0 ;
    transition: 0.3s;
}



/* company */

.company{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 300px;
}

.company .company-container{
    width: 100%;
    max-width: 1500px;
    justify-content: center;
    align-items: center;
    text-align: left;
    display: flex;
    margin-top: 100px;
}

.company .company-img{
    display: flex;
    margin-left: 30px;
    gap: 30px;
    width: 50%;
}

@media(max-width:768px){
    .company .company-img{
        display: flex;
        margin-left: 0px;
        flex-direction: column;
    }
    .company .section_01-title{
        margin-left: 0px;
        margin-top: 50px;
    }
}

.company .company-img img{
    width: 100%;
    height: auto;
    aspect-ratio: 9/14;
    object-fit: cover;
    overflow: hidden;
    display: block;
}

.company .company-content{
    width: 50%;
}

.company-info dt, dd{
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5em;
    line-height: 2em;
}

.company-info {
    position: absolute;
    bottom: -50px;
    margin: 30px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px 20px;
    align-items: start;
}

@media(max-width:768px){
    .company{
        margin-top: 100px;
    }
    .company-content{
        width: 100%;
        position: absolute;
        left: 0;
        margin-top: 1400px;
    }
    .company-info{
        width: 100%;
        margin: 0;
        grid-template-columns: 100% 100%;
        gap: 0 0 ;
        text-align: left;
        padding-left: 30px;
        font-size: 10px;
    }
    .company-info dd,.company-info dt{
        margin-top: 20px;
    }
}

@media(max-width:1000px){
    .companjy-container{
        display: flex;
        flex-direction: column;
    }

    .company-info{
        position: absolute;
        top: -140px;
        margin: 0;
    }
}

@media(max-width:600px){
    .company-content{
        position: absolute;
        margin-top: 1260px;
}
}

@media(max-width:480px){
    .company-content{
        position: absolute;
        margin-top: 1000px;
    }
}

/* footer */

footer{
    margin-top: 50px;
    width: 100%;
    height: 50px;
    background-color: #020202;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

footer p{
    color: white;
    font-size: 16px;
    width: 100%;
}

@media(max-width:1000px){
    footer{
        transform: translateY(400px);
    }
}

@media(max-width:768px){
    footer{
        transform: translateY(550px);

    }
}

@media(max-width:600px){
    footer{
        transform: translateY(500px);
    }
}

