@charset "utf-8";

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    font-family:"noto sans";
    background-color:#fff;
}

:lang(en) body {
    font-family:  sans-serif; 
}

.sp_only {
  display: none;
}

a{
    text-decoration: none; 
}


li{
    list-style: none; 
}

ul {
  padding: 0; 
  margin: 0;  
}

img { 
     max-width: 100%; 
     height: auto;
}
/*サイトロゴ*/
.site-title {
  width: 150px;
  line-height: 1px;
  padding: 10px 0;
}

.site-title a {
  display: block;
}

/*デザインで使用しているロゴ*/
.desing_logo{
    width: 296px;
}

.footer_logo{
    /* background-color: violet; */
    width: 296px;
}



/*各セクションのタイトル*/
.section-title,.ol_section-title {
  font-family: "ivyora-display", sans-serif;
  display: inline-block;
  font-size: 4.5rem;
  margin-bottom: 40px;
  font-weight: 100;
}

.ol_section-subtitle{
  font-family: "ivyora-display", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 100;
  display: flex; 
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}


/* h3横のー線 */
.ol_section-subtitle::before,
.ol_section-subtitle::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: #333; 
    max-width: 60px; 
}

.ol_section-subtitle::before {
    margin-right: 15px;
}

.ol_section-subtitle::after {
    margin-left: 15px;
}


.wrapper {
  max-width: 960px;
  margin: 0 auto 100px;
  padding: 0 4%;
  text-align: center;
}

/*フッター専用のwrapper*/
.wrapper_large{
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 0 4%;
  text-align: center;
}

section:last-of-type {
    margin-bottom: 100px;
}

p{
    margin-bottom: 0;
    margin-top: 0;
    font-size: 1.5rem;
}

.mb_large{
    margin-bottom: 30px;
}




/*-------------------------------------------
ヘッダー
-------------------------------------------*/

#header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    padding: 0 4%;
    position: relative;
}

.header-right {
    display: flex;
    align-items: center;
}

.site-title{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
    /* max-width: 200px; */
}

.icon-nav ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.icon-nav img {
    width: 30px; 
    height: auto;
}

#header li a {
  color: #333;
}
#header li a:hover {
  opacity: 0.7;
}

.full-menu{
    font-family: "ivyora-display", sans-serif;
}

.full-menu li span.subtitle
{
    display: block;
    font-size: 1.3rem;
}

/* ハンバーガー設定 時間見つけてjQに変えます*/

.header-right {
    display: flex;
    align-items: center;
    z-index: 110; 
}

.menu-checkbox {
    display: none;
}

.hamburger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 110; 
    margin-left: 30px;
}

.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}

.menu-checkbox:checked ~ .full-menu {
    opacity: 1;
    visibility: visible;
}

/* 三本線を「×」に変える */
.menu-checkbox:checked ~ .hamburger span:nth-child(1) { transform: translateY(11.5px) rotate(45deg); }
.menu-checkbox:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.menu-checkbox:checked ~ .hamburger span:nth-child(3) { transform: translateY(-11.5px) rotate(-45deg); }


.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.full-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}
.full-menu li { margin: 30px 0; }
.full-menu a { font-size: 2rem; text-decoration: none; color: #333; }


/*-------------------------------------------
Mainvisual
-------------------------------------------*/
.main_visual {
  margin-bottom: 100px;
  text-align: center; 
  /* background-color: #f0f0f0;  */
}


/* 画像が荒くなる可能性あるが、width100％にしたければこっちのCSS
.main_visual img { 
     width: 100%; 
     height: auto;
} */

/*-------------------------------------------
top>.content_image,ol>ol_content_image
-------------------------------------------*/
.content_image,.ol_content_image{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.content_image img,.ol_content_image img{
    width: 33.3%; /*予備*/
    width: calc(100%/ 3);
    height: auto;
    display: block;
    object-fit: cover;
}


/*-------------------------------------------
section .button かなり崩れてる！後日確認！！
-------------------------------------------*/

section .button_white{
    width: 300px;
    background-color: #fff;
    border: solid 1px #000; 
    line-height: 3;
    text-align: center;
    margin: 0 auto 50px;
}

section .button_white:hover{
    background-color: #e2e2e2;
    transition: 0.5s;
}

section .button_white a{
    color: #333;
    font-size: 1.6rem;
    display: block;
}

section .btn{
    /* background-color: yellowgreen; */
    width: 300px;
    background-color: #333;
    line-height: 3;
    text-align: center;
    margin: 0 auto;
}

section .btn:hover{
    background-color: #777;
    transition: 0.5s;
}

section .btn a{
    color: #fff;
    font-size: 1.6rem;
    display: block;
}

.btn_mb_l{
    margin-bottom: 30px;
}



/*-------------------------------------------
top>#original_lineup ul,ol>#ol_collection,ol>#ol_furisode
-------------------------------------------*/

#original_lineup ul,#ol_collection ul,#ol_furisode ul,#ol_kimono ul,#ol_dress ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 15px;
    padding: 0;
    max-width: 100%;
    margin-bottom: 30px;
    /* background-color: green; */
}

#original_lineup li,#ol_collection li,#ol_furisode li,#ol_kimono li,#ol_dress li{
    width: calc((100% - 30px) / 3); 
    min-width: 0;
}

#original_lineup li img,#ol_collection li img,#ol_furisode img,#ol_kimono img,#ol_dress img{
    width: 100%;
    height: auto;
    display: block;
}

ul.lineup_container{
    margin-bottom: 50px;
}

#original_lineup .section-title,.ol_section-title {
    margin-bottom: 5px; 
}

#ol_collection ul{
    margin-bottom: 50px;
}

#ol_furisode span,#ol_kimono span,#ol_dress span{
    font-family: "ivyora-display", serif;
    color: #333;
    font-size: 1.6rem;
    display: inline-block;
    align-self: flex-end;
    line-height: 1;
    padding-bottom: 7px;
}

/*-------------------------------------------
#about_aimaimme
-------------------------------------------*/
.insta_info{
    margin-bottom: 30px;
}

.insta_info p{
    margin-bottom: 10px;
}

#about_aimaimme .insta_info ul{
    display: flex;
    justify-content: center;
    gap: 50px;
}

ul.aimaimme_container{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 0;
    max-width: 100%;
}

/*ボタン白を直したらそこでmb設定してここは削除する*/
.ist_info_irreg{
    margin-top: 30px;
}


/*-------------------------------------------
#shop_info
-------------------------------------------*/
ul.shopinfo_container li{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

ul.shopinfo_container li div{
    text-align: left;
}

li .shop_image{
width: 230px;
/* background-color:yellowgreen; */
}

li .shop_details{
    width: 400px;
}

.shop_image p.mb_large{
    font-size: 1.7rem;
}

#shop_info .section-title {
    margin-bottom: 5px; 
}


/*-------------------------------------------
footer
-------------------------------------------*/

#footer{
    background-color: #000;
    margin-top: 100px;
    text-align: center;
    line-height: 5;
    padding-top: 50px;
}

ul.footer_container {
    display: flex;
    justify-content: space-between;
    padding: 0;
    text-align: left;
}

ul.footer_container p{
    line-height: 2;
    color: #fff;
}

#footer p.ft_tittle,
#footer p.ft_subtitle {
    margin:0 auto 0;
}

#footer p.ft_tittle{
    color: #fff;
    font-size: 2rem;
    line-height: 1.5;

}

#footer p.ft_subtitle{
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.sns_list{
    display: flex;
    gap: 20px;
}

.ft_ocontaint_box,.sns_box{
    border-left: solid 0.5px #fff;
    padding-left: 10px;
    margin-bottom: 10px;
}

#footer ul li a{
    color: #fff;
}

#footer a:hover {
    opacity: 0.7;
    transition: opacity 0.7s;
}


small{
  font-size: 1rem;
  color: #fff;
}


/*-------------------------------------------
Fix ボタン
-------------------------------------------*/

.page-top{
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 40px;
  bottom: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border: 0;
  background: none;
  transition: .2s;
}

.page-top p{
  writing-mode: vertical-rl;
  text-transform: uppercase;
  height: 85px;
  margin: 0;
  letter-spacing: 5px;
  text-align: right;
  color: #888;
}

.page-top p:before {
    content: "";
    position: absolute;
    top: 2px;
    right: -5px;
    width: 2px;
    height: 20px;
    background: #888;
    transform: skewX(-150deg);
}

.page-top p:after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0;
    width: 2px;
    height: 85px;
    background: #888;
}

.is-active {
  opacity: 1;
  visibility: visible;
}



/*-------------------------------------------
@media screen  max767px
-------------------------------------------*/

@media screen and (max-width: 767px){

    html {
        font-size: 50%
    }

    .sp_only {
    display: block;
  }

.wrapper {
    width: 100%;
    box-sizing: border-box; 
    margin-bottom: 30px;
  }

  .main_visual{
    height: calc(100vh - 200px);
    width: 100%;
    margin-bottom: 50px;
  }

  .main_visual img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* これが重要：比率を保ったまま領域を埋める */
    object-position: center; /* 画像のどこを中心に持ってくるか */
    object-position: -150px center;
  }

    /*----header アイコン非表示----*/
    .icon-nav img {
        display: none;
    }

    .desing_logo{
    width: 50%;
}
 
  /*----original lineup＆about aimaimme----*/
  
  /*1列にしたい場合*/
    /* #original_lineup ul,ul.aimaimme_container {
      display: block;
    }
    
    #original_lineup li,ul.aimaimme_container li  {
        width: 100%;
        margin-bottom: 15px;
    }
    
    #original_lineup li img,ul.aimaimme_container li img {
        display: block;
        width: 80%; 
        margin: 0 auto;
        height: auto;
    }
     */
    
    /*２列にしたい場合*/
    
    #original_lineup ul,ul.aimaimme_container,#ol_collection ul,
    #ol_furisode ul,
    #ol_kimono ul,
    #ol_dress ul{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #original_lineup li,ul.aimaimme_container li,#ol_collection li,
    #ol_furisode li,
    #ol_kimono li,
    #ol_dress li{
        width: calc((100% - 10px) / 2);
        margin-bottom: 15px;
    }
    
    #original_lineup li img,ul.aimaimme_container li img,#ol_collection li img,
    #ol_furisode li img,
    #ol_kimono li img,
    #ol_dress li img{
        display: block;
        width: 100%;
        height: auto;
    }

    /*----shop_info----*/

    li .shop_details {
    width: 100%;
    margin-bottom: 30px;
    /* background-color: yellowgreen; */
  }

    li .shop_image{
    width: 100%;
    margin-bottom: 0px;
    }

    ul.shopinfo_container li{
    gap: 10px;
    }

    ul.shopinfo_container li div {
    text-align: center;
  }

   .shop_details p{
    font-size: 1.2rem;
  }

  .shop_image p.mb_large{
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: bold;
  }

    /*----footer----*/

ul.footer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  ul.footer_container li {
    width: fit-content;
    text-align: center;
  }

    #footer p.ft_subtitle {
    margin-bottom: 20px;
  }

    .ft_ocontaint_box, .sns_box {
    text-align: left;
    margin-bottom: 10px;
}

.footer_logo{
    /* background-color: violet; */
    width: 250px;
}


    /*----Fixボタン削除----*/

.page-top.is-active {
    display: none;
  }

    }

    /*----MOVIE追加----*/
.movie-block {
    margin: 40px auto 32px;
  }
      
.movie-wrap {
    position: relative;
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    padding-top: 56.25%; /* 16:9 */
  }
      
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

@media screen and (max-width: 768px) {
    .movie-block {
      margin-top: 32px;
    }
  
    .movie-wrap {
      width: 88%;
    }
  }



